|
|
@@ -640,7 +640,7 @@ public class FsUserInformationCollectionServiceImpl extends ServiceImpl<FsUserIn
|
|
|
//用户信息采集表id
|
|
|
Long collectionId = collection.getId();
|
|
|
FsUserInformationCollectionSchedule schedule = scheduleMapper.selectCollectionScheduleByCollectionId(collectionId);
|
|
|
- if (collection.getStatus() == 1) {
|
|
|
+ if (collection.getStatus() == 1 && collection.getIsPackage() == 0) {
|
|
|
//用户第一次确认添加医生消息
|
|
|
DoctorMsg msg = new DoctorMsg();
|
|
|
String name = collection.getUserName() != null ? collection.getUserName() : "-";
|
|
|
@@ -947,7 +947,7 @@ public class FsUserInformationCollectionServiceImpl extends ServiceImpl<FsUserIn
|
|
|
// "用户采集进度"中止操作人员
|
|
|
fsUserInformationCollectionSchedule.setTerminatedBy(operateId);
|
|
|
scheduleMapper.updateFsUserInformationCollectionSchedule(fsUserInformationCollectionSchedule);
|
|
|
-
|
|
|
+
|
|
|
return R.ok();
|
|
|
}
|
|
|
return R.error("终止失败");
|