优化仲裁员确认功能
This commit is contained in:
+6
-1
@@ -1866,7 +1866,12 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
||||
// 同意后状态改为待部门长审核仲裁文书(CHECK_ARBITRATION = 12),拒绝改为待秘书核验仲裁文书(VERPRIF_ARBITRATION = 11)
|
||||
int rows = 0;
|
||||
ArbitrateRecord arbitrateRecord = caseApplication.getArbitrateRecord();
|
||||
arbitrateRecordMapper.updataArbitrateRecord(arbitrateRecord);
|
||||
if(arbitrateRecord.getId()!=null){
|
||||
arbitrateRecordMapper.updataArbitrateRecord(arbitrateRecord);
|
||||
}else {
|
||||
arbitrateRecordMapper.insertArbitrateRecord(arbitrateRecord);
|
||||
}
|
||||
|
||||
Integer agreeOrNotCheck = caseApplication.getAgreeOrNotCheck();
|
||||
if (agreeOrNotCheck.intValue() == 1) {
|
||||
caseApplication.setCaseStatus(CaseApplicationConstants.CHECK_ARBITRATION);
|
||||
|
||||
Reference in New Issue
Block a user