Commit ee687c9f61adb079443cba4223e6afcb36a8aedc
1 parent
da20006cc9
Exists in
master
and in
6 other branches
助产机构报表
Showing 1 changed file with 6 additions and 6 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java
View file @
ee687c9
... | ... | @@ -2605,7 +2605,7 @@ |
2605 | 2605 | } |
2606 | 2606 | } |
2607 | 2607 | |
2608 | - public void exporDueOrgCount(String time, Integer userId, String hospitalId, String proviceId, | |
2608 | + public void exporDueOrgCount(String time, Integer userId, String hospitalId, String provinceId, | |
2609 | 2609 | String cityId, String areaId, HttpServletResponse httpServletResponse) { |
2610 | 2610 | |
2611 | 2611 | try { |
2612 | 2612 | |
... | ... | @@ -2624,12 +2624,12 @@ |
2624 | 2624 | } |
2625 | 2625 | |
2626 | 2626 | Map<String,String> params = new HashMap<>(); |
2627 | - params.put("proviceId",proviceId); | |
2627 | + params.put("provinceId",provinceId); | |
2628 | 2628 | params.put("cityId", cityId); |
2629 | 2629 | params.put("areaId", areaId); |
2630 | 2630 | |
2631 | 2631 | //获取用户拥有的权限医院和条件筛选的医院交集 |
2632 | - List<String> hospitalIds = areaCountFacade.getCurrentUserHospPermissions(userId, proviceId, | |
2632 | + List<String> hospitalIds = areaCountFacade.getCurrentUserHospPermissions(userId, provinceId, | |
2633 | 2633 | cityId, areaId); |
2634 | 2634 | |
2635 | 2635 | List<Map<String,String>> list = getDatas(hospitalIds, time,params, basicConfigs); |
... | ... | @@ -2673,7 +2673,7 @@ |
2673 | 2673 | } |
2674 | 2674 | } |
2675 | 2675 | |
2676 | - public BaseObjectResponse getDueOrgCount(String time, Integer userId, String hospitalId, String proviceId, String cityId, String areaId) { | |
2676 | + public BaseObjectResponse getDueOrgCount(String time, Integer userId, String hospitalId, String provinceId, String cityId, String areaId) { | |
2677 | 2677 | |
2678 | 2678 | |
2679 | 2679 | //本市户籍 |
2680 | 2680 | |
... | ... | @@ -2690,12 +2690,12 @@ |
2690 | 2690 | } |
2691 | 2691 | |
2692 | 2692 | Map<String,String> params = new HashMap<>(); |
2693 | - params.put("proviceId",proviceId); | |
2693 | + params.put("provinceId",provinceId); | |
2694 | 2694 | params.put("cityId", cityId); |
2695 | 2695 | params.put("areaId", areaId); |
2696 | 2696 | |
2697 | 2697 | //获取用户拥有的权限医院和条件筛选的医院交集 |
2698 | - List<String> hospitalIds = areaCountFacade.getCurrentUserHospPermissions(userId, proviceId, | |
2698 | + List<String> hospitalIds = areaCountFacade.getCurrentUserHospPermissions(userId, provinceId, | |
2699 | 2699 | cityId, areaId); |
2700 | 2700 | |
2701 | 2701 | List<Map<String,String>> list = getDatas(hospitalIds, time,params, basicConfigs); |