From 6b222625a06bb0b27d05eda29d88c43f616f65e4 Mon Sep 17 00:00:00 2001 From: "litao@lymsh.com" Date: Thu, 16 Nov 2017 15:49:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java index 97fa980..c247176 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java @@ -914,8 +914,8 @@ public class ReportServiceImpl extends BaseServiceImpl implements IReportService } if(flag) { Map hospitalInfo = couponMapper.findHospitalInfoById(hid); - hospitalInfo.put("cityName", hospitalInfo.get("city_id")); - hospitalInfo.put("areaName", hospitalInfo.get("area_id")); + hospitalInfo.put("cityName", findName(hospitalInfo.get("city_id"))); + hospitalInfo.put("areaName", findName(hospitalInfo.get("area_id"))); hospitalInfo.put("un_used_coupons", un_used_coupons); hospitalInfo.put("un_used_coupon_count", un_used_coupons.size()); hospitalInfo.put("unUsedIds", unUsedIds); -- 1.8.3.1