|
|
@@ -409,6 +409,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
409
|
409
|
public int updateHeardate(CaseApplication caseApplication) {
|
|
410
|
410
|
// caseApplication.setCaseStatus(CaseApplicationConstants.PENDING_OPENCOURT_HEAR);
|
|
411
|
411
|
caseApplication.setCaseStatus(CaseApplicationConstants.PENDING_OPENCOURT_HEAR);
|
|
|
412
|
+ caseApplication.setLockStatus(1);
|
|
412
|
413
|
int rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
|
413
|
414
|
//1975139 修改开庭时间通知 尊敬的{1}用户,您的{2}仲裁案件,开庭日期已改为{3},请知晓,如非本人操作,请忽略本短信
|
|
414
|
415
|
//发送短信通知
|
|
|
@@ -1706,6 +1707,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
1706
|
1707
|
String arbitratorNamestr = arbitratorNames.stream().map(Object::toString).collect(Collectors.joining(","));
|
|
1707
|
1708
|
caseApplication.setArbitratorId(idstr);
|
|
1708
|
1709
|
caseApplication.setArbitratorName(arbitratorNamestr);
|
|
|
1710
|
+ caseApplication.setLockStatus(1);
|
|
1709
|
1711
|
rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
|
1710
|
1712
|
}
|
|
1711
|
1713
|
} else {
|
|
|
@@ -1718,6 +1720,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
1718
|
1720
|
String arbitratorNamestr = arbitratorNames.stream().map(Object::toString).collect(Collectors.joining(","));
|
|
1719
|
1721
|
caseApplication.setArbitratorId(idstr);
|
|
1720
|
1722
|
caseApplication.setArbitratorName(arbitratorNamestr);
|
|
|
1723
|
+ caseApplication.setLockStatus(1);
|
|
1721
|
1724
|
rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
|
1722
|
1725
|
}
|
|
1723
|
1726
|
}
|
|
|
@@ -2571,7 +2574,9 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
2571
|
2574
|
List<Integer> caseStatussnew = caseStatuss.stream().distinct().collect(Collectors.toList());
|
|
2572
|
2575
|
List<String> caseStatusNamesnew = caseStatusNames.stream().distinct().collect(Collectors.toList());
|
|
2573
|
2576
|
String caseStatusName = caseStatusNamesnew.stream().map(Object::toString).collect(Collectors.joining(","));
|
|
|
2577
|
+ String caseStatusstr = caseStatussnew.stream().map(Object::toString).collect(Collectors.joining(","));
|
|
2574
|
2578
|
caseApplicationselect.setCaseStatusName(caseStatusName);
|
|
|
2579
|
+ caseApplicationselect.setCaseStatusstr(caseStatusstr);
|
|
2575
|
2580
|
}
|
|
2576
|
2581
|
}
|
|
2577
|
2582
|
}
|
|
|
@@ -3253,6 +3258,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
3253
|
3258
|
// caseApplication.setCaseStatus(CaseApplicationConstants.CHECK_ARBITRATION_METHOD);
|
|
3254
|
3259
|
|
|
3255
|
3260
|
caseApplication.setCaseStatus(CaseApplicationConstants.CHECK_ARBITRATION_METHOD);
|
|
|
3261
|
+ caseApplication.setLockStatus(1);
|
|
3256
|
3262
|
Integer isAgreePendTral = caseApplication.getIsAgreePendTral();
|
|
3257
|
3263
|
int rows = 0;
|
|
3258
|
3264
|
//同意组庭
|