Commit 2f50563e388daae388ddac71a7ee210fcaa7ea79

Authored by [wangbo]
1 parent 221f5be33b

修改出院诊断bug

Showing 1 changed file with 6 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java View file @ 2f50563
... ... @@ -376,6 +376,9 @@
376 376 */
377 377 public BaseResponse updateBabyBookbuilding(BabyBookbuildingAddRequest request, Integer userId) {
378 378 BabyModel model = getBabyModel(request, true, userId);
  379 +
  380 + String hid = autoMatchFacade.getHospitalId(userId);
  381 +
379 382 model.setModified(new Date());
380 383 model.setOperator(userId);
381 384 if (StringUtils.isNotEmpty(request.getMommyCertificateNum())) {
... ... @@ -467,6 +470,9 @@
467 470  
468 471  
469 472 babyBookbuildingService.updateBabyBuild(model, request.getId());
  473 +
  474 + handleBabyDiangose(request.getBlNo(), hid);
  475 +
470 476 model.setId(request.getId());
471 477 model.setPid(pid);
472 478 patientsService.updateRefer(model);