Commit b77c9a26 authored by suhuiguang's avatar suhuiguang

1.检验检测状态去掉已转办、已作废

parent 2c10d4ca
......@@ -709,7 +709,7 @@ public class JYJCDPStatisticsServiceImpl {
List<Map<String, Object>> result = new ArrayList<>();
for (FlowStatusEnum value : values) {
Map<String, Object> map = new HashMap<>();
if (value.getCode() != 6610 && value.getCode() != 6615 && value.getCode() != 6612) {
if (value.getCode() != 6617 && value.getCode() != 6621 && value.getCode() != 6610 && value.getCode() != 6615 && value.getCode() != 6612) {
map.put("name", value.getName());
map.put("code", value.getCode());
result.add(map);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment