|
@@ -1284,6 +1284,33 @@ public class OrderLogic {
|
|
|
Goods goods = buyGood.getGoods();
|
|
|
GoodsSpec goodsSpec = buyGood.getGoodsSpec();
|
|
|
|
|
|
+ //替换商家价格
|
|
|
+ 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());
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
if (StringUtils.isNotBlank(goods.getUmsDiscountCode()) && StringUtils.isNotBlank(goodsSpec.getBarCode())) {
|
|
|
isRecordBuyer = true;
|
|
|
}
|