|
@@ -220,10 +220,10 @@ public class PayFeeServiceImp implements PayFeeService {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- result+=" 支付金额抵扣:"+String.format("%.2f",fees)+"元";
|
|
|
+ result+="; 支付金额抵扣:"+String.format("%.2f",fees)+"元";
|
|
|
//余额充值或划扣有余额
|
|
|
if(balancetype == 1 && transAmount.compareTo(BigDecimal.ZERO) == 1){
|
|
|
- result+=" 余额转预存:"+String.format("%.2f",transAmount)+"元";
|
|
|
+ result+="; 余额转预存:"+String.format("%.2f",transAmount)+"元";
|
|
|
//修改余额
|
|
|
remaining=remaining.add(transAmount);
|
|
|
//生成交易明细
|
|
@@ -233,7 +233,7 @@ public class PayFeeServiceImp implements PayFeeService {
|
|
|
payTransactiondetails.setTranstypeLabel("账户转预存");
|
|
|
transactiondetailsDtoList.add(payTransactiondetails);
|
|
|
}else{
|
|
|
- result+=" 余额找零:"+String.format("%.2f", transAmount)+"元";
|
|
|
+ result+="; 余额找零:"+String.format("%.2f", transAmount)+"元";
|
|
|
}
|
|
|
|
|
|
//修改预存账户
|