Commit cbc84efb49c343b8a6154f95a181efe4e313e5dc
1 parent
3e1bcfba
wangfs 2017-08-31 权限
Showing
3 changed files
with
5 additions
and
5 deletions
src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/datastatistic/MonthBillManagementController.java
... | ... | @@ -255,7 +255,7 @@ public class MonthBillManagementController extends BizController { |
255 | 255 | throws Exception { |
256 | 256 | // 2.调用接口查询当前登录人管辖的停车场名称 |
257 | 257 | UserInfo userInfo = sessionCommUtil.getUserInfo(); |
258 | - List<String> plNos = userInfo.getOrgIds(); | |
258 | + List<String> plNos = userInfo.getPlNos(); | |
259 | 259 | // UserInfo userInfo = sessionCommUtil.getUserInfo(); |
260 | 260 | // List<String> plNos = new ArrayList<>(); |
261 | 261 | // if (userInfo != null) { |
... | ... | @@ -291,7 +291,7 @@ public class MonthBillManagementController extends BizController { |
291 | 291 | throws Exception { |
292 | 292 | // 2.调用接口查询当前登录人管辖的停车场名称 |
293 | 293 | UserInfo userInfo = sessionCommUtil.getUserInfo(); |
294 | - List<String> plNos = userInfo.getOrgIds(); | |
294 | + List<String> plNos = userInfo.getPlNos(); | |
295 | 295 | // List<String> plNos = new ArrayList<>(); |
296 | 296 | // if (userInfo != null) { |
297 | 297 | // TdCompanyParkQueryRequest tdCompanyParkQueryRequest = new TdCompanyParkQueryRequest(); |
... | ... | @@ -441,7 +441,7 @@ public class MonthBillManagementController extends BizController { |
441 | 441 | billQueryRequest.setBaseRequest(new BaseInfo(1, 0)); |
442 | 442 | // 2.调用接口查询当前登录人管辖的停车场名称 |
443 | 443 | UserInfo userInfo = sessionCommUtil.getUserInfo(); |
444 | - List<String> plNos = userInfo.getOrgIds(); | |
444 | + List<String> plNos = userInfo.getPlNos(); | |
445 | 445 | // // 2.调用接口查询当前登录人管辖的停车场名称 |
446 | 446 | // UserInfo userInfo = sessionCommUtil.getUserInfo(); |
447 | 447 | // List<String> plNos = new ArrayList<>(); | ... | ... |
src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/datastatistic/ParkLotStatisticController.java
... | ... | @@ -118,7 +118,7 @@ public class ParkLotStatisticController { |
118 | 118 | UserInfo userInfo = sessionCommUtil.getUserInfo(); |
119 | 119 | List<String> plNos=Lists.newArrayList(); |
120 | 120 | if(null != userInfo){ |
121 | - plNos= userInfo.getOrgIds(); | |
121 | + plNos= userInfo.getPlNos(); | |
122 | 122 | } |
123 | 123 | // if(userInfo!=null){ |
124 | 124 | // TdCompanyParkQueryRequest tdCompanyParkQueryRequest = new TdCompanyParkQueryRequest(); | ... | ... |
src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java
... | ... | @@ -126,7 +126,7 @@ public class ParkLotManageController extends BizController{ |
126 | 126 | UserInfo userInfo = sessionCommUtil.getUserInfo(); |
127 | 127 | List<String> plNos =new ArrayList<>(); |
128 | 128 | if(null !=userInfo){ |
129 | - plNos = userInfo.getOrgIds(); | |
129 | + plNos = userInfo.getPlNos(); | |
130 | 130 | } |
131 | 131 | return plNos; |
132 | 132 | } | ... | ... |