|
|
@@ -64,7 +64,8 @@ public class KwpSettlementWalletService {
|
|
|
@DubboReference(version = "2.0.0", group = "design", check = false)
|
|
|
private RemoteSystemService remoteSystemService;
|
|
|
|
|
|
- private final KwpSettlementLogisticsTrackMapper kwpSettlementLogisticsTrackMapper;
|
|
|
+ @Resource
|
|
|
+ private KwpSettlementLogisticsTrackMapper kwpSettlementLogisticsTrackMapper;
|
|
|
|
|
|
/**
|
|
|
* 物流-电子钱包付款(货到付款)结算记录-列表
|
|
|
@@ -73,11 +74,6 @@ public class KwpSettlementWalletService {
|
|
|
* @date 2023-07-26 16:43
|
|
|
*/
|
|
|
public PageRes<SettlementWalletVo> pageListLogisticsPayment(SettlementWalletReq settlementWalletReq) {
|
|
|
-// //todo 查询缓存,获取客户企业id
|
|
|
-// String keywords = settlementReq.getKeywords();
|
|
|
-// if (StringUtils.isNotBlank(keywords)) {
|
|
|
-// System.out.println("关键之:" + keywords);
|
|
|
-// }
|
|
|
PageHelper.startPage(settlementWalletReq.getPage(), settlementWalletReq.getPageSize());
|
|
|
settlementWalletReq.setPayType(SettlementPayTypeEnum.CASH_ON_DELIVERY.getStatus());//只筛选 货到付款
|
|
|
List<SettlementWalletDto> settlementWalletLogisticsList = settlementWalletMapper.pageListLogisticsPayment(settlementWalletReq);
|
|
|
@@ -91,10 +87,29 @@ public class KwpSettlementWalletService {
|
|
|
entity.setUpdateByText("更新人名称");
|
|
|
}
|
|
|
|
|
|
+ Map<Long, UserCacheResDto> map = new HashMap<>();
|
|
|
//指定返回值
|
|
|
List<SettlementWalletVo> collect = settlementWalletLogisticsList.stream().map(a -> {
|
|
|
SettlementWalletVo settlementWalletVo = new SettlementWalletVo();
|
|
|
BeanUtils.copyProperties(a, settlementWalletVo);
|
|
|
+ Long createBy = a.getCreateBy();
|
|
|
+ Long updateBy = a.getUpdateBy();
|
|
|
+ UserCacheResDto userCacheResDto = map.get(createBy);
|
|
|
+ if (Objects.isNull(userCacheResDto)) {
|
|
|
+ userCacheResDto = remoteSystemService.queryUserCacheById(createBy);
|
|
|
+ map.put(createBy, userCacheResDto);
|
|
|
+ }
|
|
|
+ if (Objects.nonNull(userCacheResDto)) {
|
|
|
+ settlementWalletVo.setCreateByText(userCacheResDto.getName());
|
|
|
+ }
|
|
|
+ userCacheResDto = map.get(updateBy);
|
|
|
+ if (Objects.isNull(userCacheResDto)) {
|
|
|
+ userCacheResDto = remoteSystemService.queryUserCacheById(updateBy);
|
|
|
+ map.put(updateBy, userCacheResDto);
|
|
|
+ }
|
|
|
+ if (Objects.nonNull(userCacheResDto)) {
|
|
|
+ settlementWalletVo.setUpdateByText(userCacheResDto.getName());
|
|
|
+ }
|
|
|
return settlementWalletVo;
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
|
@@ -116,8 +131,6 @@ public class KwpSettlementWalletService {
|
|
|
/**
|
|
|
* 物流-电子钱包付款(货到付款)结算记录-新增
|
|
|
*
|
|
|
- * @param id 结算单id
|
|
|
- * @param price 付款金额
|
|
|
* @return InsertId
|
|
|
* @author Aick Spt
|
|
|
* @date 2023-07-20 14:23
|
|
|
@@ -125,7 +138,9 @@ public class KwpSettlementWalletService {
|
|
|
* Transactional// isolation:事务的隔离级别,此处使用后端数据库的默认隔离级别, propagation: 如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中(常见)。(rollbackFor = Exception.class, isolation = Isolation.DEFAULT, propagation = Propagation.REQUIRED)
|
|
|
*/
|
|
|
@Transactional
|
|
|
- public Integer confirmLogisticsPayment(Long id, BigDecimal price) {
|
|
|
+ public Integer confirmLogisticsPayment(OfflinePaymentReq offlinePaymentReq) {
|
|
|
+ Long id = offlinePaymentReq.getIdLong();
|
|
|
+ BigDecimal price = offlinePaymentReq.getPrice();
|
|
|
//先查询出结算单情况
|
|
|
SettlementLogisticsDto settlementLogisticsDto = kwpSettlementLogisticsService.detailPayment(id);
|
|
|
log.info(String.valueOf(settlementLogisticsDto));
|
|
|
@@ -234,76 +249,102 @@ public class KwpSettlementWalletService {
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * 销售-付款确认-(新增电子钱包记录-采购货到付款)
|
|
|
+ * 销售-付款确认-货到付款
|
|
|
*
|
|
|
* @author Aick Spt
|
|
|
* @date 2023-07-27 16:13
|
|
|
*/
|
|
|
- public Integer confirmTradePayment(OfflinePaymentReq offlinePaymentReq) {
|
|
|
- //先查询出结算单情况
|
|
|
- Long id = offlinePaymentReq.getIdLong();
|
|
|
- BigDecimal price = offlinePaymentReq.getPrice();
|
|
|
- SettlementTradeDto settlementTradeDto = kwpSettlementTradeService.detailPayment(id);
|
|
|
- log.info(String.valueOf(settlementTradeDto));
|
|
|
- //检查结算单状态和所差金额
|
|
|
- if (settlementTradeDto == null) {
|
|
|
- log.error("非法请求,查无数据:" + id);
|
|
|
- throw new BusinessException("非法请求运费结算参数ID");
|
|
|
- }
|
|
|
- if (settlementTradeDto.getStatus() == SettlementEnum.ALL_PAYMENT.getStatus()) {
|
|
|
- log.error("非法请求,该订单已结算完成:" + id);
|
|
|
- throw new BusinessException("该订单已结算完成,无法操作");
|
|
|
- }
|
|
|
- BigDecimal remainingReceivables = settlementTradeDto.getTotalPrice();
|
|
|
- if (settlementTradeDto.getActualPrice() != null) {//剩余金额
|
|
|
- remainingReceivables = settlementTradeDto.getTotalPrice().subtract(settlementTradeDto.getActualPrice());
|
|
|
- }
|
|
|
-
|
|
|
- if (remainingReceivables.compareTo(price) < 0) {//-1表示小于,0是等于,1是大于
|
|
|
- log.error("本次结算输入金额比剩余付款金额大:ID:" + id + " 剩余金额:" + remainingReceivables + " 本次输入金额:" + price);
|
|
|
- throw new BusinessException("参数错误:输入金额过大 " + price + " 剩余金额最大值:" + remainingReceivables);
|
|
|
- }
|
|
|
- //累加入库结算单
|
|
|
- KwpSettlementTrade kwpSettlementTrade = new KwpSettlementTrade();
|
|
|
- kwpSettlementTrade.setId(settlementTradeDto.getId());
|
|
|
- kwpSettlementTrade.setUpdateTime(LocalDateTime.now());
|
|
|
- if (remainingReceivables.compareTo(price) == 0) {//全部结算
|
|
|
- kwpSettlementTrade.setStatus(SettlementEnum.ALL_PAYMENT.getStatus());
|
|
|
- }
|
|
|
- if (remainingReceivables.compareTo(price) > 0) {//部分结算
|
|
|
- kwpSettlementTrade.setStatus(SettlementEnum.PARTIAL_PAYMENT.getStatus());
|
|
|
- }
|
|
|
- BigDecimal actualPrice = settlementTradeDto.getActualPrice();
|
|
|
- kwpSettlementTrade.setActualPrice((actualPrice == null) ? price : actualPrice.add(price));
|
|
|
- int upInt = kwpSettlementTradeMapper.updateById(kwpSettlementTrade);
|
|
|
- if (upInt > 0) {
|
|
|
- //新增一条电子钱包结算记录
|
|
|
- remainingReceivables = remainingReceivables.subtract(price);
|
|
|
- KwpSettlementWallet kwpSettlementWallet = new KwpSettlementWallet();
|
|
|
- kwpSettlementWallet.setId(new IdWorker(1).nextId());
|
|
|
- kwpSettlementWallet.setEntId(settlementTradeDto.getEntId());
|
|
|
- kwpSettlementWallet.setSettlementId(settlementTradeDto.getId());
|
|
|
- kwpSettlementWallet.setOrderType(SettlementOrderTypeEnum.LOGISTICS.getStatus());
|
|
|
- kwpSettlementWallet.setChannel(WalletChannelEnum.HF.getStatus());//先用数字默认定义为1
|
|
|
- kwpSettlementWallet.setPayTime(LocalDateTime.now());
|
|
|
- kwpSettlementWallet.setPayPrice(price);
|
|
|
- kwpSettlementWallet.setTopayPrice(remainingReceivables);
|
|
|
- kwpSettlementWallet.setType(SettlementPayTypeEnum.CASH_ON_DELIVERY.getStatus());
|
|
|
- kwpSettlementWallet.setRemark("");
|
|
|
- kwpSettlementWallet.setStatus(1);
|
|
|
- kwpSettlementWallet.setCreateBy(1L);//todo 待处理明确创建人
|
|
|
- kwpSettlementWallet.setCreateTime(LocalDateTime.now());
|
|
|
- kwpSettlementWallet.setUpdateBy(1L);//todo 待处理明确更新人
|
|
|
- kwpSettlementWallet.setUpdateTime(LocalDateTime.now());
|
|
|
- kwpSettlementWallet.setDelFlag(0);
|
|
|
- Integer insertKwpSettlementWallet = settlementWalletMapper.insert(kwpSettlementWallet);
|
|
|
-
|
|
|
- //物流货到付款电子钱包逻辑
|
|
|
- //todo 待处理费电子钱包逻辑
|
|
|
-
|
|
|
- return insertKwpSettlementWallet;
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
+ public String confirmTradePayment(WalletPayReq walletPayReq) {
|
|
|
+ String key = String.format(RedisConstant.SETTLEMENT_KEY, walletPayReq.getId());
|
|
|
+ if (redisLockUtil.tryLock(key)) {
|
|
|
+ try {
|
|
|
+ SettlementTradeDto byId = kwpSettlementTradeService.getById(walletPayReq.getIdLong(), TradeUnitType.SELL);
|
|
|
+ if (Objects.isNull(byId)) {
|
|
|
+ throw new BusinessException("结算单不存在");
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotBlank(byId.getTrading()) && !byId.getTrading().startsWith(TradingEnum.RECEIVE_PAY.getValue())) {
|
|
|
+ throw new BusinessException("只支持货货到付款方式订单进行当前操作");
|
|
|
+ }
|
|
|
+ List<LedgerUnitDto> listById = kwpSettlementTradeService.getListById(walletPayReq.getIdLong());
|
|
|
+ if (CollectionUtils.isEmpty(listById) || listById.size() != 2) {
|
|
|
+ throw new BusinessException("对账单交易企业双方不存在或缺少");
|
|
|
+ }
|
|
|
+ Long uid = null;
|
|
|
+ Long filter = null;
|
|
|
+ for (LedgerUnitDto ledgerUnitDto : listById) {
|
|
|
+ Integer unitType = ledgerUnitDto.getUnitType();
|
|
|
+ if (TradeUnitType.PURCHASE.equals(unitType)) {
|
|
|
+ uid = ledgerUnitDto.getTopEntId();
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if (TradeUnitType.SELL.equals(unitType)) {
|
|
|
+ filter = ledgerUnitDto.getTopEntId();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ String relation = walletRelationService.getRelation(uid);
|
|
|
+ String filterUser = walletRelationService.getRelation(filter);
|
|
|
+ if (StringUtils.isBlank(relation) || StringUtils.isBlank(filterUser)) {
|
|
|
+ throw new BusinessException("顶级企业未开通电子钱包");
|
|
|
+ }
|
|
|
+ //付款金额
|
|
|
+ BigDecimal price = walletPayReq.getPrice();
|
|
|
+ //todo-xcq-完善
|
|
|
+
|
|
|
+// R<List<WalletDto>> wallet = payCenterService.wallet(relation, ChannelEnum.getByCode(byId.getTrading()), filterUser);
|
|
|
+// if (CollectionUtils.isEmpty(wallet.getData())) {
|
|
|
+// throw new BusinessException("暂未开通电子钱包");
|
|
|
+// }
|
|
|
+// List<WalletDto> data = wallet.getData();
|
|
|
+// BigDecimal bigDecimal = BigDecimal.valueOf(data.get(0).getMoney()).divide(new BigDecimal("100.0"), RoundingMode.UNNECESSARY);
|
|
|
+//
|
|
|
+// if (bigDecimal.compareTo(price) < 0) {
|
|
|
+// throw new BusinessException("钱包可用余额不足");
|
|
|
+// }
|
|
|
+ //待付款金额-本次付款金额= 剩余待付款金额
|
|
|
+ BigDecimal subtract = byId.getWaitPrice().subtract(walletPayReq.getPrice());
|
|
|
+ if (subtract.compareTo(new BigDecimal("0.0")) < 0) {
|
|
|
+ throw new BusinessException("付款金额不能大于待付款金额");
|
|
|
+ }
|
|
|
+ //新增电子钱包结算记录
|
|
|
+ KwpSettlementWallet kwpSettlementWallet = new KwpSettlementWallet();
|
|
|
+ kwpSettlementWallet.setId(new IdWorker(1).nextId());
|
|
|
+ kwpSettlementWallet.setEntId(LoginUserHolder.getEntId());
|
|
|
+ kwpSettlementWallet.setSettlementId(walletPayReq.getIdLong());
|
|
|
+ kwpSettlementWallet.setOrderType(SettlementOrderTypeEnum.TRADE.getStatus());
|
|
|
+ kwpSettlementWallet.setChannel(WalletChannelEnum.getValue(byId.getTrading()));
|
|
|
+ kwpSettlementWallet.setPayTime(LocalDateTime.now());
|
|
|
+ kwpSettlementWallet.setPayPrice(walletPayReq.getPrice());
|
|
|
+ kwpSettlementWallet.setTopayPrice(subtract);
|
|
|
+ kwpSettlementWallet.setType(SettlementWalletPayTypeEnum.CASH_ON_DELIVERY.getStatus());
|
|
|
+ kwpSettlementWallet.setRemark("");
|
|
|
+ kwpSettlementWallet.setStatus(0);
|
|
|
+ kwpSettlementWallet.setCreateBy(LoginUserHolder.getUserId());
|
|
|
+ kwpSettlementWallet.setCreateTime(LocalDateTime.now());
|
|
|
+ kwpSettlementWallet.setUpdateBy(LoginUserHolder.getUserId());
|
|
|
+ kwpSettlementWallet.setUpdateTime(LocalDateTime.now());
|
|
|
+ kwpSettlementWallet.setDelFlag(0);
|
|
|
+ settlementWalletMapper.insert(kwpSettlementWallet);
|
|
|
+
|
|
|
+ //更新交易结算单状态和金额
|
|
|
+ KwpSettlementTrade kwpSettlementTrade = new KwpSettlementTrade();
|
|
|
+ kwpSettlementTrade.setId(byId.getId());
|
|
|
+ kwpSettlementTrade.setActualPrice(byId.getActualPrice().add(price));
|
|
|
+ kwpSettlementTrade.setStatus(subtract.compareTo(new BigDecimal("0.0")) == 0 ? SettlementEnum.ALL_PAYMENT.getStatus()
|
|
|
+ : SettlementEnum.PARTIAL_PAYMENT.getStatus());
|
|
|
+ kwpSettlementTrade.setUpdateBy(LoginUserHolder.getUserId());
|
|
|
+ kwpSettlementTrade.setUpdateTime(LocalDateTime.now());
|
|
|
+ kwpSettlementTradeService.updateById(kwpSettlementTrade);
|
|
|
+
|
|
|
+ settlementTradeTrackService.save(KwpSettlementTradeTrack.build(byId.getId(), SettlementTrackEnum.RECEIVE_PAY.getStatus()));
|
|
|
+ //todo-xcq 调用中台接口
|
|
|
+
|
|
|
+ return "付款确认成功";
|
|
|
+ } finally {
|
|
|
+ redisLockUtil.unlock(key);
|
|
|
+ }
|
|
|
}
|
|
|
- return null;
|
|
|
+ return "请勿重复提交!";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -350,11 +391,6 @@ public class KwpSettlementWalletService {
|
|
|
}
|
|
|
|
|
|
public PageRes<SettlementWalletVo> pageListTradeCollection(SettlementWalletReq settlementWalletReq) {
|
|
|
-// //todo 查询缓存,获取客户企业id
|
|
|
-// String keywords = settlementReq.getKeywords();
|
|
|
-// if (StringUtils.isNotBlank(keywords)) {
|
|
|
-// System.out.println("关键之:" + keywords);
|
|
|
-// }
|
|
|
PageHelper.startPage(settlementWalletReq.getPage(), settlementWalletReq.getPageSize());
|
|
|
|
|
|
List<SettlementWalletDto> settlementWalletLogisticsList = settlementWalletMapper.pageListLogisticsPayment(settlementWalletReq);
|
|
|
@@ -367,36 +403,133 @@ public class KwpSettlementWalletService {
|
|
|
return new PageRes<>(new PageInfo<>());
|
|
|
}
|
|
|
|
|
|
+ Map<Long, UserCacheResDto> map = new HashMap<>();
|
|
|
//指定返回值
|
|
|
List<SettlementWalletVo> collect = settlementWalletLogisticsList.stream().map(a -> {
|
|
|
SettlementWalletVo settlementWalletVo = new SettlementWalletVo();
|
|
|
BeanUtils.copyProperties(a, settlementWalletVo);
|
|
|
+ Long createBy = a.getCreateBy();
|
|
|
+ Long updateBy = a.getUpdateBy();
|
|
|
+ UserCacheResDto userCacheResDto = map.get(createBy);
|
|
|
+ if (Objects.isNull(userCacheResDto)) {
|
|
|
+ userCacheResDto = remoteSystemService.queryUserCacheById(createBy);
|
|
|
+ map.put(createBy, userCacheResDto);
|
|
|
+ }
|
|
|
+ if (Objects.nonNull(userCacheResDto)) {
|
|
|
+ settlementWalletVo.setCreateByText(userCacheResDto.getName());
|
|
|
+ }
|
|
|
+ userCacheResDto = map.get(updateBy);
|
|
|
+ if (Objects.isNull(userCacheResDto)) {
|
|
|
+ userCacheResDto = remoteSystemService.queryUserCacheById(updateBy);
|
|
|
+ map.put(updateBy, userCacheResDto);
|
|
|
+ }
|
|
|
+ if (Objects.nonNull(userCacheResDto)) {
|
|
|
+ settlementWalletVo.setUpdateByText(userCacheResDto.getName());
|
|
|
+ }
|
|
|
return settlementWalletVo;
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
|
return new PageRes<>(new PageInfo<>(collect));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 销售-预付款
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public String confirmTradeCollection(Long id) {
|
|
|
+ String key = String.format(RedisConstant.SETTLEMENT_KEY, id);
|
|
|
+
|
|
|
+ if (redisLockUtil.tryLock(key)) {
|
|
|
+ try {
|
|
|
+ SettlementTradeDto byId = kwpSettlementTradeService.getById(id, TradeUnitType.PURCHASE);
|
|
|
+ if (Objects.isNull(byId)) {
|
|
|
+ throw new BusinessException("结算单不存在");
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotBlank(byId.getTrading()) && !byId.getTrading().startsWith(TradingEnum.PRE_PAY.getValue())) {
|
|
|
+ throw new BusinessException("只支持预付款交易方式进行预付款确认操作");
|
|
|
+ }
|
|
|
+ //更新交易结算单状态和金额
|
|
|
+ KwpSettlementTrade kwpSettlementTrade = new KwpSettlementTrade();
|
|
|
+ kwpSettlementTrade.setId(byId.getId());
|
|
|
+ kwpSettlementTrade.setActualPrice(byId.getTotalPrice());
|
|
|
+ kwpSettlementTrade.setStatus(SettlementEnum.ALL_PAYMENT.getStatus());
|
|
|
+ kwpSettlementTrade.setUpdateBy(LoginUserHolder.getUserId());
|
|
|
+ kwpSettlementTrade.setUpdateTime(LocalDateTime.now());
|
|
|
+ kwpSettlementTradeService.updateById(kwpSettlementTrade);
|
|
|
+ //新增电子钱包结算记录
|
|
|
+ KwpSettlementWallet kwpSettlementWallet = new KwpSettlementWallet();
|
|
|
+ kwpSettlementWallet.setId(new IdWorker(1).nextId());
|
|
|
+ kwpSettlementWallet.setEntId(LoginUserHolder.getEntId());
|
|
|
+ kwpSettlementWallet.setSettlementId(byId.getId());
|
|
|
+ kwpSettlementWallet.setOrderType(SettlementOrderTypeEnum.TRADE.getStatus());
|
|
|
+ kwpSettlementWallet.setChannel(WalletChannelEnum.getValue(byId.getTrading()));
|
|
|
+ kwpSettlementWallet.setPayTime(LocalDateTime.now());
|
|
|
+ kwpSettlementWallet.setPayPrice(byId.getTotalPrice());
|
|
|
+ kwpSettlementWallet.setTopayPrice(new BigDecimal("0.0"));
|
|
|
+ kwpSettlementWallet.setType(SettlementWalletPayTypeEnum.ADVANCE_PAYMENT.getStatus());
|
|
|
+ kwpSettlementWallet.setRemark("");
|
|
|
+ kwpSettlementWallet.setStatus(0);
|
|
|
+ kwpSettlementWallet.setCreateBy(LoginUserHolder.getUserId());
|
|
|
+ kwpSettlementWallet.setCreateTime(LocalDateTime.now());
|
|
|
+ kwpSettlementWallet.setUpdateBy(LoginUserHolder.getUserId());
|
|
|
+ kwpSettlementWallet.setUpdateTime(LocalDateTime.now());
|
|
|
+ kwpSettlementWallet.setDelFlag(0);
|
|
|
+ settlementWalletMapper.insert(kwpSettlementWallet);
|
|
|
+ settlementTradeTrackService.save(KwpSettlementTradeTrack.build(byId.getId(), SettlementTrackEnum.PRE_PAY.getStatus()));
|
|
|
+ //todo-xcq 调用中台接口
|
|
|
+ //todo-xcq 调用订单接口,更新订单状态
|
|
|
+ return "确认回款成功";
|
|
|
+ } finally {
|
|
|
+ redisLockUtil.unlock(key);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return "请勿重复提交!";
|
|
|
|
|
|
- public Integer confirmTradeCollection(Long id, Float price) {
|
|
|
- log.info("接收到数据,开始物流-销售-收款确认-预付款(电子钱包)-新增,待完善");
|
|
|
- //todo 待完善
|
|
|
- //先查询出结算单情况
|
|
|
-
|
|
|
- //检查结算单状态和所差金额
|
|
|
-
|
|
|
- //对比金额
|
|
|
-
|
|
|
- //累加入库结算单
|
|
|
-
|
|
|
- //扣费电子钱包
|
|
|
+ }
|
|
|
|
|
|
- //新增电子钱包结算记录
|
|
|
- KwpSettlementWallet kwpSettlementWallet = new KwpSettlementWallet();
|
|
|
- kwpSettlementWallet.setId(new IdWorker(1).nextId());
|
|
|
- //todo 待完善
|
|
|
- settlementWalletMapper.insert(kwpSettlementWallet);
|
|
|
- return settlementWalletMapper.confirmLogisticsPayment(id, price);
|
|
|
+ /**
|
|
|
+ * 电子钱包余额
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public BigDecimal getConfirmTradePayment(Long id) {
|
|
|
+ SettlementTradeDto byId = kwpSettlementTradeService.getById(id, TradeUnitType.SELL);
|
|
|
+ if (Objects.isNull(byId)) {
|
|
|
+ throw new BusinessException("结算单不存在");
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotBlank(byId.getTrading()) && !byId.getTrading().startsWith(TradingEnum.RECEIVE_PAY.getValue())) {
|
|
|
+ throw new BusinessException("只支持货货到付款方式订单进行当前操作");
|
|
|
+ }
|
|
|
+ List<LedgerUnitDto> listById = kwpSettlementTradeService.getListById(id);
|
|
|
+ if (CollectionUtils.isEmpty(listById) || listById.size() != 2) {
|
|
|
+ throw new BusinessException("对账单交易企业双方不存在或缺少");
|
|
|
+ }
|
|
|
+ Long uid = null;
|
|
|
+ Long filter = null;
|
|
|
+ for (LedgerUnitDto ledgerUnitDto : listById) {
|
|
|
+ Integer unitType = ledgerUnitDto.getUnitType();
|
|
|
+ if (TradeUnitType.PURCHASE.equals(unitType)) {
|
|
|
+ uid = ledgerUnitDto.getTopEntId();
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if (TradeUnitType.SELL.equals(unitType)) {
|
|
|
+ filter = ledgerUnitDto.getTopEntId();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ String relation = walletRelationService.getRelation(uid);
|
|
|
+ String filterUser = walletRelationService.getRelation(filter);
|
|
|
+ if (StringUtils.isBlank(relation) || StringUtils.isBlank(filterUser)) {
|
|
|
+ throw new BusinessException("顶级企业未开通电子钱包");
|
|
|
+ }
|
|
|
+ R<List<WalletDto>> wallet = payCenterService.wallet(relation, ChannelEnum.getByCode(byId.getTrading()), filterUser);
|
|
|
+ if (CollectionUtils.isEmpty(wallet.getData())) {
|
|
|
+ throw new BusinessException("暂未开通电子钱包");
|
|
|
+ }
|
|
|
+ List<WalletDto> data = wallet.getData();
|
|
|
+ return BigDecimal.valueOf(data.get(0).getMoney() / 100.0);
|
|
|
}
|
|
|
}
|
|
|
|