立案审查提交接口
This commit is contained in:
+2
@@ -33,4 +33,6 @@ public interface ICaseApplicationService {
|
||||
int verificationArbitrateRecord(CaseApplication caseApplication);
|
||||
|
||||
int checkArbitrateRecord(CaseApplication caseApplication);
|
||||
|
||||
int submitCaseApplicationCheck(CaseApplication caseApplication);
|
||||
}
|
||||
|
||||
+17
-1
@@ -88,7 +88,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
||||
@Transactional
|
||||
public int submitCaseApplication(CaseApplication caseApplication) {
|
||||
//提交立案申请
|
||||
caseApplication.setCaseStatus(CaseApplicationConstants.PENDING_PAYMENT);
|
||||
caseApplication.setCaseStatus(CaseApplicationConstants.CASE_CHECK);
|
||||
int rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
||||
return rows;
|
||||
}
|
||||
@@ -287,6 +287,22 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
||||
return rows;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Transactional
|
||||
public int submitCaseApplicationCheck(CaseApplication caseApplication) {
|
||||
//提交立案审查
|
||||
int rows = 0;
|
||||
Integer agreeOrNotCheck = caseApplication.getAgreeOrNotCheck();
|
||||
if(agreeOrNotCheck.intValue()==1){//同意审核
|
||||
caseApplication.setCaseStatus(CaseApplicationConstants.PENDING_PAYMENT);
|
||||
rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
||||
}else if(agreeOrNotCheck.intValue()==2){//拒绝审核
|
||||
caseApplication.setCaseStatus(CaseApplicationConstants.CASE_APPLICATION);
|
||||
rows = caseApplicationMapper.submitCaseApplication(caseApplication);
|
||||
}
|
||||
return rows;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Transactional
|
||||
public int pendTralSure(CaseApplication caseApplication) {
|
||||
|
||||
@@ -110,7 +110,6 @@
|
||||
<if test="claimInterestOwed != null ">#{claimInterestOwed},</if>
|
||||
<if test="claimLiquidDamag != null ">#{claimLiquidDamag},</if>
|
||||
<if test="feePayable != null ">#{feePayable},</if>
|
||||
<if test="paidExpenses != null ">#{paidExpenses},</if>
|
||||
<if test="beginVideoDate != null ">#{beginVideoDate},</if>
|
||||
<if test="onlineVideoPerson != null and onlineVideoPerson != ''">#{onlineVideoPerson},</if>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user