Commit 955c76d41490b8ac2619067a6ed5c19ce91fcc66

Authored by liquanyu
1 parent 78b344865f

操作日志

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java View file @ 955c76d
... ... @@ -252,7 +252,7 @@
252 252 patient.setOperator(userId);
253 253 Patients p = yunBookbuildingService.addPregnantBookbuilding(patient);
254 254  
255   - operateLogFacade.addOptLog(userId,Integer.valueOf(yunRequest.getHospitalId()),p,"",OptActionEnums.ADD.getId(),"孕妇建档");
  255 + operateLogFacade.addOptLog(userId,Integer.valueOf(yunRequest.getHospitalId()),p,null,OptActionEnums.ADD.getId(),"孕妇建档");
256 256  
257 257 /** 孕妇建档后把所有以前未使用的优惠券作废 */
258 258 couponService.invalid(p.getPid(), "1,2,3,4,5,6,7,8");
... ... @@ -1391,7 +1391,7 @@
1391 1391 String hospital = autoMatchFacade.getHospitalId(userId);
1392 1392 Patients patients = yunBookbuildingService.findOneById(id);
1393 1393  
1394   - operateLogFacade.addOptLog(userId,Integer.valueOf(patients.getHospitalId()),patients,"",OptActionEnums.DELETE.getId(),"删除孕妇建档");
  1394 + operateLogFacade.addOptLog(userId,Integer.valueOf(patients.getHospitalId()),patients,null,OptActionEnums.DELETE.getId(),"删除孕妇建档");
1395 1395  
1396 1396 if (!deleteProcessHandler.deleteBookBuild(patients.getPid(), patients.getBookbuildingDate(), hospital)) {
1397 1397 return new BaseResponse().setErrorcode(ErrorCodeConstants.DONT_DELETE).setErrormsg("孕妇存在检查记录,不能删除建档");