This commit is contained in:
mashuai 2025-08-29 13:27:45 +08:00
parent f547c8af75
commit b2d8cb5d37
1 changed files with 5 additions and 0 deletions

View File

@ -538,7 +538,12 @@ public class LeaseTaskServiceImpl implements ILeaseTaskService {
leaseApplyDetailsMapper.deleteLeaseApplyDetailsByParentIds(ids);
insertPurchaseCheckDetails(leaseApplyRequestVo.getLeaseApplyDetailsList(), leaseApplyInfo.getId());
}
TmTask tmTask = tmTaskMapper.selectTmTaskByTaskId(leaseApplyInfo.getTaskId());
if (statusFlag == 0) {
sysWorkflowRecordService.addSysWorkflowRecord(leaseApplyInfo.getTaskId().intValue(), tmTask.getCode(), 19);
}
// 修改外层info
leaseApplyInfo.setCode(tmTask.getCode());
mapper.updateLeaseApplyInfo(leaseApplyInfo);
return true;
}