debug:提现后剩余金额为0

This commit is contained in:
墨大叔 2024-08-07 10:11:52 +08:00
parent b548e1aad1
commit caf14cbdf2

View File

@ -391,6 +391,7 @@ public class TransactionBillServiceImpl implements TransactionBillService {
bill.setChannelId(channel.getChannelId());
bill.setWithdrawType(WithdrawType.ONLINE.getType());
bill.setChannelCost(channel.getCostRate().multiply(bill.getMoney()).divide(new BigDecimal(100), 2, RoundingMode.HALF_UP)); // 渠道成本
bill.setAfterBalance(user.getBalance().subtract(dto.getMoney())); // 剩余金额
transactionTemplate.execute(status -> {
// 提现申请
@ -400,10 +401,6 @@ public class TransactionBillServiceImpl implements TransactionBillService {
// 减少余额并判断提现金额是否超额减少的是交易金额
userService.subtractBalance(userId, bill.getMoney(), String.format("提现申请:%s", bill.getBillNo()), RecordBalanceBstType.WITHDRAW, bill.getBillId());
// 减少余额后的用户信息
SmUserVo afterUser = smUserMapper.selectSimpleById(userId);
bill.setAfterBalance(afterUser.getBalance());
return insert;
});