From 8d247c0999d7fa2699e468d0980e95006643daf1 Mon Sep 17 00:00:00 2001 From: "litao@lymsh.com" Date: Tue, 28 Nov 2017 11:58:41 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lyms/platform/operate/web/utils/ResolveUtils.java | 18 ------------------ 1 file changed, 18 deletions(-) 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 a032ab1..6600639 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 @@ -383,24 +383,6 @@ public class ResolveUtils { return dueWeek; } - public static String getPregnancyWeek3(Patients patients,Date date){ - String dueWeek=""; - if (null != patients.getDueStatus() && patients.getDueStatus() != null && 1 == patients.getDueStatus()) { - dueWeek = "终止妊娠"; - } else { - if (null != patients.getLastMenses()) { - int days = 0; - if(patients.getFuckLastMens() != null) { - days = DateUtil.daysBetween(patients.getFuckLastMens(), date); - } else { - days = DateUtil.daysBetween(patients.getLastMenses(), date); - } - dueWeek = com.lyms.platform.common.utils.StringUtils.dueWeek(days); - } - } - return dueWeek; - } - public static String getPregnancyWeek2(Patients patients,Date date){ String dueWeek=""; if (null != patients.getDueStatus() && patients.getDueStatus() != null && 1 == patients.getDueStatus()) { -- 1.8.3.1