diff --git a/src/com/engine/salary/service/impl/SIAccountServiceImpl.java b/src/com/engine/salary/service/impl/SIAccountServiceImpl.java index 87094093e..2a96f1802 100644 --- a/src/com/engine/salary/service/impl/SIAccountServiceImpl.java +++ b/src/com/engine/salary/service/impl/SIAccountServiceImpl.java @@ -1293,9 +1293,9 @@ public class SIAccountServiceImpl extends Service implements SIAccountService { batchPO.setFundNum(viewListDTO.getFundNum()); batchPO.setOtherNum(viewListDTO.getOtherNum()); - batchPO.setSocialPay(viewListDTO.getSocialPaySum()); - batchPO.setFundPay(viewListDTO.getFundPaySum()); - batchPO.setOtherPay(viewListDTO.getOtherPaySum()); + batchPO.setSocialPay(viewListDTO.getSocialPaySum().replace(",", "")); + batchPO.setFundPay(viewListDTO.getFundPaySum().replace(",", "")); + batchPO.setOtherPay(viewListDTO.getOtherPaySum().replace(",", "")); batchPO.setUpdateTime(new Date()); batchPO = SiAccountEncrypt.encryptInsuranceAccountBatch(batchPO);