Commit c3ae4313bfbe186ee98a7bc6ae51dc483308dbab
1 parent
84c02be928
Exists in
master
and in
6 other branches
修复bug
Showing 1 changed file with 4 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PelvicFloorServiceImpl.java
View file @
c3ae431
| ... | ... | @@ -714,11 +714,11 @@ |
| 714 | 714 | |
| 715 | 715 | // 随访时间 |
| 716 | 716 | Date month3Time = model.getMonth3Time(); |
| 717 | - map.put("month3TimeStr", month3Time != null ? DateUtil.getYmd(month3Time) : ""); | |
| 717 | + map.put("month3TimeStr", month3Time != null ? DateUtil.getyyyy_MM_dd(month3Time) : ""); | |
| 718 | 718 | Date month6Time = model.getMonth6Time(); |
| 719 | - map.put("month6TimeStr", month6Time != null ? DateUtil.getYmd(month6Time) : ""); | |
| 719 | + map.put("month6TimeStr", month6Time != null ? DateUtil.getyyyy_MM_dd(month6Time) : ""); | |
| 720 | 720 | Date yearTime = model.getYearTime(); |
| 721 | - map.put("yearTimeStr", yearTime != null ? DateUtil.getYmd(yearTime) : ""); | |
| 721 | + map.put("yearTimeStr", yearTime != null ? DateUtil.getyyyy_MM_dd(yearTime) : ""); | |
| 722 | 722 | |
| 723 | 723 | // 随访人员 |
| 724 | 724 | String month3User = model.getMonth3User(); |
| ... | ... | @@ -733,7 +733,7 @@ |
| 733 | 733 | map.put("month3ResultStr", StringUtils.isNotEmpty(month3Result1) ? "1".equals(month3Result1) ? "成功" : "失败" : ""); |
| 734 | 734 | String month6Result1 = model.getMonth6Result(); |
| 735 | 735 | map.put("month6ResultStr", StringUtils.isNotEmpty(month6Result1) ? "1".equals(month6Result1) ? "成功" : "失败" : ""); |
| 736 | - String yearResult1 = model.getMonth3Result(); | |
| 736 | + String yearResult1 = model.getYearResult(); | |
| 737 | 737 | map.put("yearResultStr", StringUtils.isNotEmpty(yearResult1) ? "1".equals(yearResult1) ? "成功" : "失败" : ""); |
| 738 | 738 | |
| 739 | 739 | mapList.add(map); |