Commit 0d194f70 authored by fangxinjiang's avatar fangxinjiang

合同续签待办-fxj

parent 2e2059fa
...@@ -145,7 +145,7 @@ public class DoFascTask { ...@@ -145,7 +145,7 @@ public class DoFascTask {
preNew.setRequestId(""); preNew.setRequestId("");
} }
preNew.setSignFlag(CommonConstants.ZERO_STRING); preNew.setSignFlag(CommonConstants.ZERO_STRING);
preNew.setRevokeReason(terminationNote); preNew.setRevokeReason(Common.isEmpty(terminationNote)?CommonConstants.EMPTY_STRING:terminationNote);
tEmployeeContractPreNewService.updateById(preNew); tEmployeeContractPreNewService.updateById(preNew);
} }
//如果存在合同申请审核数据,将状态更新成5撤销签署 //如果存在合同申请审核数据,将状态更新成5撤销签署
...@@ -158,7 +158,7 @@ public class DoFascTask { ...@@ -158,7 +158,7 @@ public class DoFascTask {
|| fddEvent.equals("sign-task-fill-rejected")) { || fddEvent.equals("sign-task-fill-rejected")) {
// 3:签署任务参与方签署失败事件 // 3:签署任务参与方签署失败事件
preNew.setProcessStatus(CommonConstants.dingleDigitStrArray[7]); preNew.setProcessStatus(CommonConstants.dingleDigitStrArray[7]);
preNew.setErrorInfo(terminationNote); preNew.setErrorInfo(Common.isEmpty(terminationNote)?CommonConstants.EMPTY_STRING:terminationNote);
preNew.setErrorTime(new Date()); preNew.setErrorTime(new Date());
preNew.setRequestId(""); preNew.setRequestId("");
tEmployeeContractPreNewService.updateById(preNew); tEmployeeContractPreNewService.updateById(preNew);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment