Commit 6438f67856310807155f95feb6339177d796c3a8

Authored by 杨鸣坤
1 parent 5981b7f9

楚江ERP:新增完成直接提交审核

@@ -22,6 +22,7 @@ import com.lframework.starter.web.core.utils.PageResultUtil; @@ -22,6 +22,7 @@ import com.lframework.starter.web.core.utils.PageResultUtil;
22 import com.lframework.starter.web.inner.components.oplog.OtherOpLogType; 22 import com.lframework.starter.web.inner.components.oplog.OtherOpLogType;
23 import com.lframework.xingyun.sc.entity.CustomerCredit; 23 import com.lframework.xingyun.sc.entity.CustomerCredit;
24 import com.lframework.xingyun.sc.entity.SpecLockDelayApplication; 24 import com.lframework.xingyun.sc.entity.SpecLockDelayApplication;
  25 +import com.lframework.xingyun.sc.enums.CustomerDevelopStatus;
25 import com.lframework.xingyun.sc.mappers.SpecLockDelayApplicationMapper; 26 import com.lframework.xingyun.sc.mappers.SpecLockDelayApplicationMapper;
26 import com.lframework.xingyun.sc.service.contract.SpecLockDelayApplicationService; 27 import com.lframework.xingyun.sc.service.contract.SpecLockDelayApplicationService;
27 import com.lframework.xingyun.sc.vo.contract.createVo.CreateSpecLockDelayApplicationVo; 28 import com.lframework.xingyun.sc.vo.contract.createVo.CreateSpecLockDelayApplicationVo;
@@ -98,7 +99,7 @@ public class SpecLockDelayApplicationServiceImpl extends BaseMpServiceImpl<SpecL @@ -98,7 +99,7 @@ public class SpecLockDelayApplicationServiceImpl extends BaseMpServiceImpl<SpecL
98 data.setSpecLockDate(vo.getSpecLockDate()); 99 data.setSpecLockDate(vo.getSpecLockDate());
99 data.setApplicationCount(vo.getApplicationCount()); 100 data.setApplicationCount(vo.getApplicationCount());
100 data.setDelayReason(vo.getDelayReason()); 101 data.setDelayReason(vo.getDelayReason());
101 - data.setApprovalStatus(vo.getApprovalStatus()); 102 + data.setApprovalStatus(CustomerDevelopStatus.AUDIT.name()); // 新建完成直接提交审核
102 103
103 getBaseMapper().insert(data); 104 getBaseMapper().insert(data);
104 105