Commit f0ba7467 authored by hongguangwu's avatar hongguangwu

MVP1.7.5-薪资提交校验

parent fa4f5213
......@@ -1223,10 +1223,10 @@ public class TSalaryStandardServiceImpl extends ServiceImpl<TSalaryStandardMappe
, List<TInsuranceUnpurchasePerson> updatePerSonList) {
TInsuranceUnpurchasePerson updatePerSon = new TInsuranceUnpurchasePerson();
updatePerSon.setId(buyPerson.getId());
if (Common.isEmpty(updatePerSon.getSalaryNum())) {
if (Common.isEmpty(buyPerson.getSalaryNum())) {
updatePerSon.setSalaryNum(CommonConstants.ONE_INT);
} else {
updatePerSon.setSalaryNum(updatePerSon.getSalaryNum() + CommonConstants.ONE_INT);
updatePerSon.setSalaryNum(buyPerson.getSalaryNum() + CommonConstants.ONE_INT);
}
updatePerSonList.add(updatePerSon);
......
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