|
@@ -141,7 +141,7 @@ public class AccountRequestFundsFlow extends FlowDelegate {
|
|
|
if ("3".equals(accountRequestFunds.getType())) {
|
|
|
BigDecimal subtract = accountRequestFunds.getTotal().subtract(accountRequestFunds.getAdvanceAmounts());
|
|
|
accountPayment.setAmount(subtract);
|
|
|
- if(subtract.compareTo(BigDecimal.ZERO)==0){//不生成打款数据
|
|
|
+ if (subtract.compareTo(BigDecimal.ZERO) <= 0) {//不生成打款数据
|
|
|
return;
|
|
|
}
|
|
|
} else {
|