Commit cd1a77cc397f7a6acdde3e199431812a29e4e1ea

Authored by cfl
1 parent c11fb9454e
Exists in master and in 2 other branches dev, luanping

服务修改增加周数代码修改

Showing 1 changed file with 3 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceFacade.java View file @ cd1a77c
... ... @@ -602,6 +602,9 @@
602 602 if (before.getSerStatus() == PatientSerEnums.SerStatusEnums.td.getId()) {//如果上一次是退订状态,重新开通,开通时间为当前时间
603 603 ps.setCreateDate(new Date());
604 604 }
  605 + //修改服务时增加孕周内容 cfl 20231019
  606 + Patients patients = patientsService.findOnePatientById(ps.getParentid());
  607 + setServiceRecordUpdate(ps,patients);
605 608  
606 609 patientServiceService.updatePatientService(ps);
607 610