|
@@ -1,5 +1,6 @@
|
|
|
package com.gree.mall.miniapp.logic.goods;
|
|
|
|
|
|
+import cn.binarywang.wx.miniapp.bean.live.WxMaLiveResult;
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import com.alibaba.excel.util.CollectionUtils;
|
|
|
import com.aliyuncs.utils.StringUtils;
|
|
@@ -19,6 +20,7 @@ import com.gree.mall.miniapp.logic.common.WechatLogic;
|
|
|
import com.gree.mall.miniapp.logic.seckill.SecKillLogic;
|
|
|
import com.gree.mall.miniapp.plus.entity.*;
|
|
|
import com.gree.mall.miniapp.plus.service.*;
|
|
|
+import com.gree.mall.miniapp.utils.StringUtil;
|
|
|
import com.gree.mall.miniapp.utils.oss.OSSUtil;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -185,6 +187,34 @@ public class GoodsLogic {
|
|
|
}
|
|
|
//商品规格(包含秒杀商品)
|
|
|
List<GoodsSpecSecBean> goodsSpecs = goodsSpecDetailMapper.querySpecSec(goodsId);
|
|
|
+
|
|
|
+ //替换商家价格
|
|
|
+ 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());
|
|
|
+
|
|
|
+ for (GoodsSpecSecBean goodsSpec : goodsSpecs) {
|
|
|
+ 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());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
//是否有收藏
|
|
|
Integer goodsFavoritesCount = goodsFavoriteService.lambdaQuery()
|
|
|
.eq(GoodsFavorite::getGoodsId, goodsId)
|