|
@@ -838,7 +838,7 @@ public class ExportController extends BaseController {
|
|
|
row.setBalancePaymentAmount(BigDecimal.ZERO);
|
|
|
}
|
|
|
String feeBase = "0.28";
|
|
|
- if(row.getPaymentBusinessChannel().equals("alipay_wap")){
|
|
|
+ if(row.getPaymentBusinessChannel()!= null && row.getPaymentBusinessChannel().equals("alipay_wap")){
|
|
|
feeBase = "0.68";
|
|
|
}
|
|
|
BigDecimal transferFee = (row.getActualAmount().multiply(new BigDecimal(feeBase)).divide(new BigDecimal(100))).setScale(2, BigDecimal.ROUND_HALF_UP);
|
|
@@ -1902,7 +1902,7 @@ public class ExportController extends BaseController {
|
|
|
row.setBalancePaymentAmount(BigDecimal.ZERO);
|
|
|
}
|
|
|
String feeBase = "0.28";
|
|
|
- if(row.getPaymentBusinessChannel().equals("alipay_wap")){
|
|
|
+ if(row.getPaymentBusinessChannel()!= null && row.getPaymentBusinessChannel().equals("alipay_wap")){
|
|
|
feeBase = "0.68";
|
|
|
}
|
|
|
BigDecimal transferFee = (row.getActualAmount().multiply(new BigDecimal(feeBase)).divide(new BigDecimal(100))).setScale(2, BigDecimal.ROUND_HALF_UP);
|