|
|
@@ -35,19 +35,19 @@ public class StorageSealedConfirmationImpl implements StorageSealedConfirmationS
|
|
35
|
35
|
// 区分列表页面
|
|
36
|
36
|
Integer auditState = param.getAuditState();
|
|
37
|
37
|
if (!ObjectUtils.isEmpty(auditState)) {
|
|
38
|
|
- // 审批状态 1:待提交,2:待审批,3:驳回,4:已审批,5:审批结束
|
|
|
38
|
+ // 列表状态1:申请列表,2:审核列表,3:已审核列表
|
|
39
|
39
|
List<Integer> integerList = new ArrayList<>();
|
|
40
|
|
- if (auditState == 1 || auditState == 3) {
|
|
|
40
|
+ if (auditState == 1) {
|
|
41
|
41
|
integerList.add(1);
|
|
42
|
42
|
integerList.add(3);
|
|
43
|
43
|
criteria.andAuditStateIn(integerList);
|
|
44
|
44
|
}
|
|
45
|
|
- if (auditState == 2 || auditState == 4) {
|
|
|
45
|
+ if (auditState == 2) {
|
|
46
|
46
|
integerList.add(2);
|
|
47
|
47
|
integerList.add(4);
|
|
48
|
48
|
criteria.andAuditStateIn(integerList);
|
|
49
|
49
|
}
|
|
50
|
|
- if (auditState == 5) {
|
|
|
50
|
+ if (auditState == 3) {
|
|
51
|
51
|
criteria.andAuditStateEqualTo(5);
|
|
52
|
52
|
}
|
|
53
|
53
|
}
|