Commit 8d247c0999d7fa2699e468d0980e95006643daf1
1 parent
c9a6bfb018
Exists in
master
and in
6 other branches
还原
Showing 1 changed file with 0 additions and 18 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/ResolveUtils.java
View file @
8d247c0
... | ... | @@ -383,24 +383,6 @@ |
383 | 383 | return dueWeek; |
384 | 384 | } |
385 | 385 | |
386 | - public static String getPregnancyWeek3(Patients patients,Date date){ | |
387 | - String dueWeek=""; | |
388 | - if (null != patients.getDueStatus() && patients.getDueStatus() != null && 1 == patients.getDueStatus()) { | |
389 | - dueWeek = "终止妊娠"; | |
390 | - } else { | |
391 | - if (null != patients.getLastMenses()) { | |
392 | - int days = 0; | |
393 | - if(patients.getFuckLastMens() != null) { | |
394 | - days = DateUtil.daysBetween(patients.getFuckLastMens(), date); | |
395 | - } else { | |
396 | - days = DateUtil.daysBetween(patients.getLastMenses(), date); | |
397 | - } | |
398 | - dueWeek = com.lyms.platform.common.utils.StringUtils.dueWeek(days); | |
399 | - } | |
400 | - } | |
401 | - return dueWeek; | |
402 | - } | |
403 | - | |
404 | 386 | public static String getPregnancyWeek2(Patients patients,Date date){ |
405 | 387 | String dueWeek=""; |
406 | 388 | if (null != patients.getDueStatus() && patients.getDueStatus() != null && 1 == patients.getDueStatus()) { |