Commit a92db978fa50345c6448f1b31d679e5a85ae3b32

Authored by litao
1 parent 716d6176ff

bug修复

Showing 1 changed file with 2 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java View file @ a92db97
... ... @@ -645,8 +645,10 @@
645 645 public BaseObjectResponse couponInit(Map<String, Object> param) {
646 646 if(StringUtils.isBlank((String) param.get("hospitalId"))) {
647 647 param.put("hospitalIds", accessPermissionFacade.getCurrentUserHospPermissions(Integer.parseInt(param.get("userId") + ""))); /** 模拟根据登陆人id 查询出来的医院 */
  648 + param.put("hospitalId", accessPermissionFacade.getCurrentUserHospPermissions(Integer.parseInt(param.get("userId") + ""))); /** 模拟根据登陆人id 查询出来的医院 */
648 649 } else {
649 650 param.put("hospitalIds", CollectionUtils.asList((String) param.get("hospitalId")));
  651 + param.put("hospitalId", CollectionUtils.asList((String) param.get("hospitalId")));
650 652 }
651 653  
652 654 doHospitalFilter(param);