|
|
@@ -147,10 +147,10 @@ public class CaseEvidenceServiceImpl implements ICaseEvidenceService {
|
|
147
|
147
|
IdentityAuthenticationMapper identityAuthenticationMapper;
|
|
148
|
148
|
|
|
149
|
149
|
@Override
|
|
150
|
|
- public List<CaseEvidenceVO> getCaseListAll(String identityNum) {
|
|
|
150
|
+ public List<CaseEvidenceVO> getCaseListAll(Integer caseStatus) {
|
|
151
|
151
|
// 是否为超级管理员
|
|
152
|
152
|
int adMinFlag=0;
|
|
153
|
|
- if (StringUtils.isBlank(identityNum)) {
|
|
|
153
|
+ String identityNum = "";
|
|
154
|
154
|
IdentityAuthentication authentication = new IdentityAuthentication();
|
|
155
|
155
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
156
|
156
|
// 查询该用户的角色
|
|
|
@@ -175,8 +175,8 @@ public class CaseEvidenceServiceImpl implements ICaseEvidenceService {
|
|
175
|
175
|
identityNum = authentication1.getIdentityNo();
|
|
176
|
176
|
}
|
|
177
|
177
|
}
|
|
178
|
|
- }
|
|
179
|
|
- List<Integer> caseStatusList = Arrays.asList(CaseApplicationConstants.CASE_CROSSEXAMI);
|
|
|
178
|
+
|
|
|
179
|
+ List<Integer> caseStatusList = Arrays.asList(caseStatus);
|
|
180
|
180
|
return getCaseEvidenceVOList(identityNum, caseStatusList, 2);
|
|
181
|
181
|
}
|
|
182
|
182
|
|
|
|
@@ -430,6 +430,7 @@ public class CaseEvidenceServiceImpl implements ICaseEvidenceService {
|
|
430
|
430
|
|
|
431
|
431
|
private List<CaseEvidenceVO> getCaseEvidenceVOList(String identityNum, List<Integer> caseStatusList, Integer identityType) {
|
|
432
|
432
|
List<CaseEvidenceVO> caseListByRespondent = caseEvidenceMapper.getCaseListByRespondent(identityNum, caseStatusList, identityType);
|
|
|
433
|
+ // todo 返回房间号和开庭时间
|
|
433
|
434
|
if (caseListByRespondent != null && caseListByRespondent.size() > 0) {
|
|
434
|
435
|
for (CaseEvidenceVO caseEvidenceVO : caseListByRespondent) {
|
|
435
|
436
|
//根据案件id查询姓名
|