|
|
@@ -989,8 +989,7 @@ public class FsUserInformationCollectionServiceImpl extends ServiceImpl<FsUserIn
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @Transactional
|
|
|
- public R salesHelpConfirm(Long collectionId) {
|
|
|
+ @Transactional public R salesHelpConfirm(Long collectionId, Long operateId) {
|
|
|
if (collectionId == null) {
|
|
|
return R.error("参数错误");
|
|
|
}
|
|
|
@@ -1028,6 +1027,7 @@ public class FsUserInformationCollectionServiceImpl extends ServiceImpl<FsUserIn
|
|
|
//"完成"任务状态
|
|
|
editSchedule.setStatus(CollectionTaskStatusEnum.COMPLETED.getCode());
|
|
|
editSchedule.setCompletedTime(DateUtils.getNowDate());
|
|
|
+ editSchedule.setTerminatedBy(operateId);
|
|
|
log.info("同步用户信息采集进度节点为:{},信息采集表id:{}",PrescriptionTaskStepEnum.WAITING_COMPLETED.getDesc(),schedule.getCollectionId());
|
|
|
if (fsUserInformationCollectionMapper.updateFsUserInformationCollection(editCollection) > 0 && scheduleMapper.updateFsUserInformationCollectionSchedule(editSchedule) > 0) {
|
|
|
return R.ok();
|