Commit b43ea6ab9721681f40a20fddcd4ae9c86e33752e
1 parent
8f148f59d4
Exists in
master
and in
6 other branches
新增高危修改
Showing 1 changed file with 3 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntExRecordFacade.java
View file @
b43ea6a
| ... | ... | @@ -628,7 +628,7 @@ |
| 628 | 628 | } |
| 629 | 629 | } |
| 630 | 630 | |
| 631 | - antExRecordQuery.setLevelId(antExManagerQueryRequest.getLevel()); | |
| 631 | + //antExRecordQuery.setLevelId(antExManagerQueryRequest.getLevel()); | |
| 632 | 632 | List<AntExRecordModel> antExRecordModelList = recordService.queryAntExRecords(antExRecordQuery, Sort.Direction.DESC,"created"); |
| 633 | 633 | Map<String,List<AntExRecordModel>> map = handleAntexRecord(antExRecordModelList); |
| 634 | 634 | AntExRecordQuery pageAntExRecordsQuery = new AntExRecordQuery(); |
| ... | ... | @@ -757,7 +757,7 @@ |
| 757 | 757 | pageAntExRecordsQuery.setPage(request.getPage()); |
| 758 | 758 | pageAntExRecordsQuery.setLimit(request.getLimit()); |
| 759 | 759 | pageAntExRecordsQuery.setIds(ids); |
| 760 | - //pageAntExRecordsQuery.setLevelId(request.getLevel()); | |
| 760 | + pageAntExRecordsQuery.setLevelId(request.getLevel()); | |
| 761 | 761 | |
| 762 | 762 | |
| 763 | 763 | List<AntExRecordModel> pageAntExRecords = recordService.queryAntExRecords(pageAntExRecordsQuery); |
| ... | ... | @@ -794,7 +794,7 @@ |
| 794 | 794 | { |
| 795 | 795 | if (StringUtils.isEmpty(riskId)) |
| 796 | 796 | { |
| 797 | - return true && isExistsLevel(level,incrHrisk); | |
| 797 | + return isExistsLevel(level,incrHrisk); | |
| 798 | 798 | } |
| 799 | 799 | return incrHrisk.contains(riskId) && isExistsLevel(level,incrHrisk); |
| 800 | 800 | } |