Commit 3a541de1d1bf1521b2852915c0ae444f2d2e7055
1 parent
472a7ccd80
Exists in
master
and in
6 other branches
统计
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
3a541de
| ... | ... | @@ -601,8 +601,8 @@ |
| 601 | 601 | Map<String, Object> param = CollectionUtils.createMap("hospitalIds", hospitalIds, "userIds", userIds, "provinceId", provinceId, "cityId", cityId, "areaId", areaId, "page", (page - 1) * limit, "limit", limit); |
| 602 | 602 | List<Map<String, Object>> restList = couponMapper.findUnUsed(param); |
| 603 | 603 | for (Map<String, Object> map : restList) { |
| 604 | - map.put("cityName", map.get("city_id")); | |
| 605 | - map.put("areaName", map.get("area_id")); | |
| 604 | + map.put("cityName", findName(map.get("city_id"))); | |
| 605 | + map.put("areaName", findName(map.get("area_id"))); | |
| 606 | 606 | } |
| 607 | 607 | Integer count = couponMapper.findUnUsedCount(param); |
| 608 | 608 | return RespBuilder.buildSuccess(new PageResult(count, page, limit, restList)); |