Commit b87aa5ba authored by huyuchen's avatar huyuchen

huych-合同自动化代码提交

parent ac1c130f
...@@ -865,6 +865,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -865,6 +865,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
//是否撤销签署 //是否撤销签署
employeeContractPreVo.setSignFlag(CommonConstants.ONE_STRING); employeeContractPreVo.setSignFlag(CommonConstants.ONE_STRING);
employeeContractPreVo.setRevokeReason(CommonConstants.EMPTY_STRING); employeeContractPreVo.setRevokeReason(CommonConstants.EMPTY_STRING);
//实习开始日期、实习结束日期赋值合同开始、截止日期
if (Common.isNotNull(employeeContractPreVo.getInternshipPeriodStart())) {
employeeContractPreVo.setContractStart(employeeContractPreVo.getInternshipPeriodStart());
}
if (Common.isNotNull(employeeContractPreVo.getInternshipPeriodEnd())) {
employeeContractPreVo.setContractEnd(employeeContractPreVo.getInternshipPeriodEnd());
}
} }
/** /**
......
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