|
|
@ -957,8 +957,9 @@ public class BankServiceImpl implements BankService { |
|
|
int amountInt = (int) Math.round(amountDouble); |
|
|
int amountInt = (int) Math.round(amountDouble); |
|
|
ipay88DTO.setAmount(String.valueOf(amountInt)); |
|
|
ipay88DTO.setAmount(String.valueOf(amountInt)); |
|
|
|
|
|
|
|
|
double feeDouble = cashCollection.getPermanentGold() * 3.18 * 0.0085; |
|
|
|
|
|
int feeInt = (int) Math.round(feeDouble); |
|
|
|
|
|
|
|
|
// double feeDouble = cashCollection.getPermanentGold() * 3.18 * 0.0085; |
|
|
|
|
|
// int feeInt = (int) Math.round(feeDouble); |
|
|
|
|
|
int feeInt = 0; |
|
|
ipay88DTO.setFee(String.valueOf(feeInt)); |
|
|
ipay88DTO.setFee(String.valueOf(feeInt)); |
|
|
|
|
|
|
|
|
int netInt = amountInt-feeInt; |
|
|
int netInt = amountInt-feeInt; |
|
|
|