Commit e90596fb651d9d6a18b396f57ed04cafcac98234

Authored by yangfei
1 parent c6b1a32c93

儿童小程序开通服务同步

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java View file @ e90596f
... ... @@ -127,8 +127,8 @@
127 127 } else if (patientService.getSerStatus() == PatientSerEnums.SerStatusEnums.zt.getId()) {
128 128 babyBookbuildingAddRequest.setServiceStatus(ServiceStatusEnums.SUSPEND.getId());
129 129 }
  130 + babyBookbuildingFacade.updateBabySerInfo(babyBookbuildingAddRequest);
130 131 }
131   - babyBookbuildingFacade.updateBabySerInfo(babyBookbuildingAddRequest);
132 132 } else {//孕妇建档服务数据处理
133 133 Patients patient = new Patients();
134 134 if (PatientSerEnums.SerTypeEnums.yqjzzd.getId() == patientService.getSerType()) {//孕期精准指导同步到建档
135 135  
... ... @@ -142,8 +142,8 @@
142 142 } else if (patientService.getSerStatus() == PatientSerEnums.SerStatusEnums.zt.getId()) {
143 143 patient.setServiceStatus(ServiceStatusEnums.SUSPEND.getId());
144 144 }
  145 + bookbuildingFacade.updatePatientSerById(patientService.getParentid(), patient);
145 146 }
146   - bookbuildingFacade.updatePatientSerById(patientService.getParentid(), patient);
147 147 }
148 148 }
149 149