Procházet zdrojové kódy

fix

release_toaliyun_real
winter před 1 rokem
rodič
revize
438cdd01ef
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxFinanceServiceImpl.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxFinanceServiceImpl.java Zobrazit soubor

@@ -924,7 +924,7 @@ public class WxFinanceServiceImpl implements WxFinanceService {
String money = ""; String money = "";
BigDecimal oweDecimal = new BigDecimal(bill.getRemainReturnPrice()); BigDecimal oweDecimal = new BigDecimal(bill.getRemainReturnPrice());
//只有没有有欠款才会支付 //只有没有有欠款才会支付
if (oweDecimal.compareTo(b0) > 0 ) {
if (new BigDecimal(bill.getOwe()).compareTo(b0) > 0 ) {
throw new MallinkException(ErrorCode.SYS_SERVER_ERROR.getCode(),"账单有欠缴,不能付款."); throw new MallinkException(ErrorCode.SYS_SERVER_ERROR.getCode(),"账单有欠缴,不能付款.");
//noNeedCreate = true; //noNeedCreate = true;
//return noNeedCreate; //return noNeedCreate;


Načítá se…
Zrušit
Uložit