eims/ruoyi-modules/lb-eims/src/main/java/org/dromara/eims/service/impl/ReportServiceImpl.java
@@ -283,11 +283,11 @@ if (allZero) { return MAINT_0; // 待保养 } boolean allGtOne = orders.stream().allMatch(o -> Integer.parseInt(o.getStatus()) > 1); boolean allGtOne = orders.stream().allMatch(o -> Integer.parseInt(o.getStatus()) == 1); if (allGtOne) { return MAINT_2; // 待验证 } boolean allGtTwo = orders.stream().allMatch(o -> Integer.parseInt(o.getStatus()) > 2); boolean allGtTwo = orders.stream().allMatch(o -> Integer.parseInt(o.getStatus()) == 2); if (allGtTwo) { return MAINT_3; // 已完成 }