|
@@ -117,7 +117,7 @@ public class PayInvoiceServiceImpl implements PayinvoiceService {
|
|
|
|
|
|
for(PayTransactiondetails payTransactiondetails:payTransactiondetailsList){
|
|
|
//转预存或充值金额
|
|
|
- if(payTransactiondetails.getPayway()!=4&&(payTransactiondetails.getTranstype()==1||payTransactiondetails.getTranstype()==4)){
|
|
|
+ if(payTransactiondetails.getPayway()!=5&&(payTransactiondetails.getTranstype()==1||payTransactiondetails.getTranstype()==4)){
|
|
|
countReceivedamount = countReceivedamount.add(payTransactiondetails.getTransamount()!=null?payTransactiondetails.getTransamount():BigDecimal.ZERO);
|
|
|
|
|
|
invoice.setAccountId(payTransactiondetails.getAccountId());
|
|
@@ -133,7 +133,7 @@ public class PayInvoiceServiceImpl implements PayinvoiceService {
|
|
|
|
|
|
for(PayPayReceived received:Receiveds){
|
|
|
//非预存划扣(即支付金额抵扣)
|
|
|
- if(received.getPayway()!=4){
|
|
|
+ if(received.getPayway()!=5){
|
|
|
countReceivedamount = countReceivedamount.add(received.getReceivedamount()!=null?received.getReceivedamount():BigDecimal.ZERO);
|
|
|
|
|
|
invoice.setAccountId(received.getAccountId());
|