瀏覽代碼

审核人

zhangyuewww 3 年之前
父節點
當前提交
72eef2182c

+ 5 - 0
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/entity/TranProcessInfo.java

@@ -260,6 +260,11 @@ public class TranProcessInfo extends BaseModel<TranProcessInfo> {
      */
     @TableField(exist = false)
     private Integer carNum;
+    /**
+     * 审核人
+     */
+    @TableField(exist = false)
+    private String reviewer;
 
     @Override
     protected Serializable pkVal() {

+ 1 - 0
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/service/impl/TranProcessInfoServiceImpl.java

@@ -410,6 +410,7 @@ public class TranProcessInfoServiceImpl extends ServiceImpl<TranProcessInfoMappe
             TranPriceApprove tranPriceApprove = new TranPriceApprove();
             tranPriceApprove.setProcessId(tranProcessInfo.getId());
             tranPriceApprove.setId(IdGenerator.generateUUID());
+            tranPriceApprove.setReviewer(tranProcessInfo.getReviewer());
             tranPriceApprove.setResult("通过");
             tranPriceApprove.setTranPrice(tranProcessInfo.getTranPrice());
             tranPriceApproveService.insert(tranPriceApprove);