‘linchangsheng’ 6 days ago
parent
commit
858f0248d2
1 changed files with 29 additions and 0 deletions
  1. 29 0
      src/main/java/com/gree/mall/miniapp/logic/order/OrderLogic.java

+ 29 - 0
src/main/java/com/gree/mall/miniapp/logic/order/OrderLogic.java

@@ -1431,6 +1431,35 @@ public class OrderLogic {
             if (goods == null || goodsSpec == null) {
                 throw new RemoteServiceException("商品不存在,请重新添加");
             }
+
+
+            //替换商家价格
+            GoodsApply goodsApply = goodsApplyService.lambdaQuery()
+                    .eq(GoodsApply::getGoodsId, goods.getGoodsId())
+                    .eq(GoodsApply::getWebsitId, user.getWebsitId())
+                    .eq(GoodsApply::getStatus, "OK")
+                    .last("limit 1").one();
+            if (goodsApply != null){
+                List<GoodsApplyItem> goodsApplyItems =
+                        goodsApplyItemService.lambdaQuery()
+                                .eq(GoodsApplyItem::getGoodsApplyId, goodsApply.getGoodsApplyId())
+                                .list();
+
+                goods.setGoodsPrice(goodsApply.getGoodsPrice());
+                goods.setOrgGoodsPrice(goodsApply.getOrgGoodsPrice());
+
+
+                List<GoodsApplyItem> goodsApplyItemList = goodsApplyItems.stream().filter(item -> item.getGoodsSpecId().equals(goodsSpec.getGoodsSpecId()))
+                        .collect(Collectors.toList());
+                if (!CollectionUtils.isEmpty(goodsApplyItemList)){
+                    goodsSpec.setPrice(goodsApplyItemList.get(0).getApplyPrice());
+                    goodsSpec.setShareAmount(goodsApplyItemList.get(0).getApplyShareAmount());
+                    goodsSpec.setInnerShareAmount(goodsApplyItemList.get(0).getApplyInnerShareAmount());
+                }
+
+            }
+
+
             buyGood.setGoods(goods);
             buyGood.setGoodsSpec(goodsSpec);