|
|
|
@@ -412,7 +412,7 @@ public class WxAllBillServiceImpl extends WxBillBaseService implements WxAllBill |
|
|
|
BigDecimal pay = new BigDecimal(dto.getAddpay()); |
|
|
|
if (latePayLastMoney.compareTo(pay) >= 0 ) { |
|
|
|
if (pay.compareTo(new BigDecimal(0)) > 0 ) { |
|
|
|
wxBillRent.setPay(pay.toPlainString()); |
|
|
|
wxBillRent.setPay(opay.toPlainString()); |
|
|
|
sb.append(";已付金额增加").append(new BigDecimal(dto.getAddpay()).toPlainString()); |
|
|
|
//实际应收的抵扣 |
|
|
|
//remainSetoff = remainSetoff.subtract(latePayLastMoney.subtract(new BigDecimal(dto.getAddpay()))); |
|
|
|
|