| | |
| | | package com.mzl.flower.service.impl.wallet; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.constant.Constants; |
| | | import com.mzl.flower.dto.request.wallet.CreateWalletBillRecordDTO; |
| | | import com.mzl.flower.dto.request.wallet.QueryWalletBillDTO; |
| | | import com.mzl.flower.dto.response.wallet.WalletBillRecordVO; |
| | | import com.mzl.flower.entity.payment.Transfer; |
| | | import com.mzl.flower.entity.payment.TransferDetail; |
| | | import com.mzl.flower.entity.wallet.WalletBillRecordDO; |
| | |
| | | import org.springframework.util.StringUtils; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | walletBillRecordDO.update("sys"); |
| | | walletBillRecordMapper.updateById(walletBillRecordDO); |
| | | //更新钱包 |
| | | WalletDO walletDO = walletService.getBySupplierId(walletBillRecordDO.getWalletId()); |
| | | WalletDO walletDO = walletService.getOrCreateBySupplierId(walletBillRecordDO.getWalletId()); |
| | | if(!ObjectUtils.isEmpty(walletDO)){ |
| | | //提现中金额:减少提现中金额 |
| | | walletDO.setWithdrawingAmount(walletDO.getWithdrawingAmount().subtract(walletBillRecordDO.getChangeAmount())); |
| | |
| | | walletBillRecordDO.setTransferState(Constants.SETTLEMENT_STATUS.FAILED.name()); |
| | | walletBillRecordDO.update("sys"); |
| | | walletBillRecordMapper.updateById(walletBillRecordDO); |
| | | WalletDO walletDO = walletService.getBySupplierId(walletBillRecordDO.getWalletId()); |
| | | WalletDO walletDO = walletService.getOrCreateBySupplierId(walletBillRecordDO.getWalletId()); |
| | | if(!ObjectUtils.isEmpty(walletDO)){ |
| | | //提现中金额:减少提现中金额 |
| | | walletDO.setWithdrawingAmount(walletDO.getWithdrawingAmount().subtract(walletBillRecordDO.getChangeAmount())); |
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public Page<WalletBillRecordVO> getPage(Page page, QueryWalletBillDTO dto) { |
| | | List<WalletBillRecordVO> list = walletBillRecordMapper.getPage(page,dto); |
| | | page.setRecords(list); |
| | | return page; |
| | | } |
| | | } |