Commit 333a8d5e12152f6770e406536c06f0578c7a85a8

Authored by litao
1 parent e326cb1274

去掉儿童优惠券发放明细导出删除户籍地这一列

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 @ 333a8d5
... ... @@ -1236,7 +1236,7 @@
1236 1236 cnames.put("send_hospital", "发放机构");
1237 1237 cnames.put("doctoer_name", "发放医生");
1238 1238 cnames.put("residenceAddress", "居住地");
1239   - cnames.put("householdAddress", "户籍地");
  1239 +// cnames.put("householdAddress", "户籍地");
1240 1240 cnames.put("phone", "联系电话");
1241 1241  
1242 1242 List<Map<String,Object>> results = new ArrayList<>();
... ... @@ -1249,7 +1249,7 @@
1249 1249 result.put("send_hospital", m.get("send_hospital"));
1250 1250 result.put("doctoer_name", m.get("doctoer_name"));
1251 1251 result.put("residenceAddress", m.get("residenceAddress"));
1252   - result.put("householdAddress", m.get("householdAddress"));
  1252 +// result.put("householdAddress", m.get("householdAddress"));
1253 1253 result.put("phone", m.get("phone"));
1254 1254 results.add(result);
1255 1255 }