Commit 84e6ae2c authored by huyuchen's avatar huyuchen

Merge remote-tracking branch 'origin/MVP1.7.5' into MVP1.7.5

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