Commit 8b62efee042c769f2fe7c5379b750d8938bb457e

Authored by yangfei
1 parent b8febe6e40

首诊打印增加月经周期

Showing 1 changed file with 2 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java View file @ 8b62efe
... ... @@ -4,7 +4,6 @@
4 4 import com.lyms.platform.biz.SequenceConstant;
5 5 import com.lyms.platform.biz.service.*;
6 6 import com.lyms.platform.common.constants.ErrorCodeConstants;
7   -import com.lyms.platform.common.constants.UnitConstants;
8 7 import com.lyms.platform.common.dao.operator.MongoQuery;
9 8 import com.lyms.platform.common.enums.*;
10 9 import com.lyms.platform.common.result.BaseObjectResponse;
11 10  
... ... @@ -2468,14 +2467,14 @@
2468 2467 //月经周期
2469 2468 String mensDay = "";
2470 2469 if (patients.getMensEndDay() != null) {
2471   - mensDay = com.lyms.platform.common.utils.StringUtils.unitHandle(patients.getMensStartDay(), UnitConstants.DAY);
  2470 + mensDay = patients.getMensStartDay();
2472 2471 }
2473 2472  
2474 2473 if (patients.getMensEndDay() != null) {
2475 2474 if (com.lyms.platform.common.utils.StringUtils.isNotEmpty(mensDay)) {
2476 2475 mensDay += " - ";
2477 2476 }
2478   - mensDay += com.lyms.platform.common.utils.StringUtils.unitHandle(patients.getMensEndDay(), UnitConstants.DAY);
  2477 + mensDay += patients.getMensEndDay();
2479 2478 }
2480 2479 antexChuResult.setMensDay(mensDay);
2481 2480 }