|
|
@@ -151,7 +151,7 @@ public class BalancePayService extends SuperService {
|
|
|
TransferTransactionsModel.GeneralLedgerTransaction destinationTransaction = new TransferTransactionsModel.GeneralLedgerTransaction();
|
|
|
destinationTransaction.setGeneralLedgerId(userPayAccount.getLedgerId());
|
|
|
destinationTransaction.setOrderNumber(rechargeOrder.getOrderNo());
|
|
|
- destinationTransaction.setTransactionType(TransactionType.Transfer);
|
|
|
+ destinationTransaction.setTransactionType(TransactionType.Deposit);
|
|
|
destinationTransaction.setTransactionStatus(TransactionStatus.Success);
|
|
|
destinationTransaction.setAmount(rechargeOrder.getTotal().longValue());
|
|
|
destinationTransaction.setRemark("用户余额充值");
|
|
|
@@ -205,7 +205,7 @@ public class BalancePayService extends SuperService {
|
|
|
TransferTransactionsModel.GeneralLedgerTransaction destinationTransaction = new TransferTransactionsModel.GeneralLedgerTransaction();
|
|
|
destinationTransaction.setGeneralLedgerId(orgWaitSettle.getLedgerId());
|
|
|
destinationTransaction.setOrderNumber(orderNo);
|
|
|
- destinationTransaction.setTransactionType(TransactionType.Receive);
|
|
|
+ destinationTransaction.setTransactionType(TransactionType.Pay);
|
|
|
destinationTransaction.setTransactionStatus(TransactionStatus.Success);
|
|
|
destinationTransaction.setAmount(total.longValue());
|
|
|
destinationTransaction.setRemark(remark);
|