|
|
@@ -88,7 +88,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
88
|
88
|
@Transactional
|
|
89
|
89
|
public int submitCaseApplication(CaseApplication caseApplication) {
|
|
90
|
90
|
//提交立案申请
|
|
91
|
|
- caseApplication.setCaseStatus(CaseApplicationConstants.PENDING_PAYMENT);
|
|
|
91
|
+ caseApplication.setCaseStatus(CaseApplicationConstants.CASE_CHECK);
|
|
92
|
92
|
int rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
|
93
|
93
|
return rows;
|
|
94
|
94
|
}
|
|
|
@@ -287,6 +287,22 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
287
|
287
|
return rows;
|
|
288
|
288
|
}
|
|
289
|
289
|
|
|
|
290
|
+ @Override
|
|
|
291
|
+ @Transactional
|
|
|
292
|
+ public int submitCaseApplicationCheck(CaseApplication caseApplication) {
|
|
|
293
|
+ //提交立案审查
|
|
|
294
|
+ int rows = 0;
|
|
|
295
|
+ Integer agreeOrNotCheck = caseApplication.getAgreeOrNotCheck();
|
|
|
296
|
+ if(agreeOrNotCheck.intValue()==1){//同意审核
|
|
|
297
|
+ caseApplication.setCaseStatus(CaseApplicationConstants.PENDING_PAYMENT);
|
|
|
298
|
+ rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
|
|
299
|
+ }else if(agreeOrNotCheck.intValue()==2){//拒绝审核
|
|
|
300
|
+ caseApplication.setCaseStatus(CaseApplicationConstants.CASE_APPLICATION);
|
|
|
301
|
+ rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
|
|
302
|
+ }
|
|
|
303
|
+ return rows;
|
|
|
304
|
+ }
|
|
|
305
|
+
|
|
290
|
306
|
@Override
|
|
291
|
307
|
@Transactional
|
|
292
|
308
|
public int pendTralSure(CaseApplication caseApplication) {
|