diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java index 715e2ef..b647db4 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java @@ -235,7 +235,7 @@ public class ViewFacade { map.put("serviceStatus", ServiceStatusEnums.getNameById(data.getServiceStatus())); //建档孕周 - map.put("buildDueWeek", ResolveUtils.getPregnancyWeek3(data, data.getBookbuildingDate())); + map.put("buildDueWeek", ResolveUtils.getPregnancyWeek(data, data.getBookbuildingDate())); map.put("fuckLastMensWeek", ResolveUtils.getPregnancyWeek2(data, data.getBookbuildingDate())); diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/ResolveUtils.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/ResolveUtils.java index 08bc580..a032ab1 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/ResolveUtils.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/ResolveUtils.java @@ -405,9 +405,9 @@ public class ResolveUtils { String dueWeek=""; if (null != patients.getDueStatus() && patients.getDueStatus() != null && 1 == patients.getDueStatus()) { dueWeek = "终止妊娠"; - }/* else if (patients.getType() != null && 3 == patients.getType()) { + } else if (patients.getType() != null && 3 == patients.getType()) { dueWeek = "已分娩"; - }*/ else { + } else { if (null != patients.getLastMenses()) { if(patients.getFuckLastMens() == null) { return "";