Commit 402d3685a19f8742670d2817626053741a025dd6

Authored by 房远帅
1 parent 6697f77b

楚江ERP:资信问题修复

... ... @@ -912,7 +912,7 @@ public class CustomerCreditServiceImpl extends BaseMpServiceImpl<CustomerCreditM
912 912 //开启审核
913 913 vo.setUserId(SecurityUtil.getCurrentUser().getId());
914 914 String deptCode = transactorHandler.returnDeptCode(SecurityUtil.getCurrentUser().getId());
915   - data.setDeptCode(deptCode);
  915 + vo.setDeptCode(deptCode);
916 916 flowInstanceWrapperService.startInstance(BPM_FLAG, data.getId(), BPM_FLAG, vo);
917 917 }
918 918
... ...
... ... @@ -478,4 +478,10 @@ public class UpdateCustomerCreditVo implements BaseVo, Serializable {
478 478 @ApiModelProperty(value = "流程发起人")
479 479 private String userId;
480 480
  481 + /**
  482 + * 办事处code(非持久化字段)
  483 + */
  484 + @TableField(exist = false)
  485 + private String deptCode;
  486 +
481 487 }
... ...