Просмотр исходного кода

[账单][修改][导入其他押金时欠缴金额]

release_toaliyun_real
gongbiao 6 лет назад
Родитель
Сommit
41db740a46
1 измененных файлов: 3 добавлений и 3 удалений
  1. +3
    -3
      mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java

+ 3
- 3
mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java Просмотреть файл

@@ -1184,7 +1184,7 @@ public class WxBillAllServiceImpl implements WxBillAllService {
Date date = new Date();
daily.setCreatetime(date);
daily.setUpdatetime(date);
daily.setOwe(receivePay);
daily.setOwe(receivePay - pay);
daily.setIsDel(EnumDelStatus.NOT_DEL.getCode());
daily.setStarttime(bill.getStarttime());
daily.setEndtime(bill.getEndtime());
@@ -1249,7 +1249,7 @@ public class WxBillAllServiceImpl implements WxBillAllService {
Date date = new Date();
other.setCreatetime(date);
other.setUpdatetime(date);
other.setOwe(receivePay);
other.setOwe(receivePay - pay);
other.setIsDel(EnumDelStatus.NOT_DEL.getCode());
other.setStarttime(bill.getStarttime());
other.setEndtime(bill.getEndtime());
@@ -1316,7 +1316,7 @@ public class WxBillAllServiceImpl implements WxBillAllService {
otherDeposit.setCreatetime(date);
otherDeposit.setUpdatetime(date);
otherDeposit.setExpiredDay(0L);
otherDeposit.setOwe(receivePay);
otherDeposit.setOwe(receivePay - pay);
otherDeposit.setIsDel(EnumDelStatus.NOT_DEL.getCode());
otherDeposit.setStarttime(bill.getStarttime());
otherDeposit.setEndtime(bill.getEndtime());


Загрузка…
Отмена
Сохранить