|
@@ -67,6 +67,12 @@ public class GoodsLogic {
|
|
|
@Autowired
|
|
|
GoodsTagRelaService goodsTagRelaService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ GoodsApplyService goodsApplyService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ GoodsApplyItemService goodsApplyItemService;
|
|
|
+
|
|
|
|
|
|
* 商品列表
|
|
|
*
|
|
@@ -82,47 +88,25 @@ public class GoodsLogic {
|
|
|
currentCompanyWechat.getUser().getUserId(), currentCompanyWechat.getUser().getType(),
|
|
|
keyword, categoryId,sort,null);
|
|
|
|
|
|
-
|
|
|
+ this.supplyGoodsNewBean(page,currentCompanyWechat);
|
|
|
return page;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void supplyGoodsNewBean(IPage<GoodsNewBean> page, CurrentCompanyWechat currentCompanyWechat){
|
|
|
-
|
|
|
+
|
|
|
for (GoodsNewBean goodsNewBean : page.getRecords()) {
|
|
|
if(goodsNewBean == null){
|
|
|
continue;
|
|
|
}
|
|
|
- SecKillActivitySpec secKillActivitySpec = secActivityStageMapper.getSecKillActivitySpecByGoodId(goodsNewBean.getGoodsId());
|
|
|
- if(secKillActivitySpec != null){
|
|
|
- goodsNewBean.setOrgGoodsPrice(secKillActivitySpec.getGoodsPrice());
|
|
|
- goodsNewBean.setGoodsPrice(secKillActivitySpec.getPrice());
|
|
|
- }
|
|
|
- if(goodsNewBean.getGoodsType().equals(GoodsTypeEnum.PACKAGE.toString())){
|
|
|
- goodsNewBean.setOrgGoodsPrice(goodsNewBean.getPackageMinAmount());
|
|
|
- goodsNewBean.setGoodsPrice(goodsNewBean.getPackageMinAmount());
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- for (GoodsNewBean goodsNewBean : page.getRecords()) {
|
|
|
-
|
|
|
- List<GoodsTagRela> list1 = goodsTagRelaService.lambdaQuery().eq(GoodsTagRela::getGoodsId, goodsNewBean.getGoodsId())
|
|
|
- .eq(GoodsTagRela::getType,1).list();
|
|
|
- if (list1.size() > 0) {
|
|
|
- List<String> collect1 = list1.stream().map(GoodsTagRela::getGoodsTagName).collect(Collectors.toList());
|
|
|
- goodsNewBean.setTags1(collect1);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- List<GoodsTagRela> list = goodsTagRelaService.lambdaQuery().eq(GoodsTagRela::getGoodsId, goodsNewBean.getGoodsId())
|
|
|
- .eq(GoodsTagRela::getType,2).list();
|
|
|
- if (list.size() > 0) {
|
|
|
- List<String> collect1 = list.stream().map(GoodsTagRela::getGoodsTagName).collect(Collectors.toList());
|
|
|
- goodsNewBean.setTags2(collect1);
|
|
|
+ GoodsApply goodsApply = goodsApplyService.lambdaQuery().eq(GoodsApply::getGoodsId, goodsNewBean.getGoodsId())
|
|
|
+ .eq(GoodsApply::getWebsitId, currentCompanyWechat.getUser().getWebsitId())
|
|
|
+ .eq(GoodsApply::getStatus, "OK")
|
|
|
+ .last("limit 1").one();
|
|
|
+ if(goodsApply != null){
|
|
|
+ goodsNewBean.setOrgGoodsPrice(goodsApply.getOrgGoodsPrice());
|
|
|
+ goodsNewBean.setGoodsPrice(goodsApply.getGoodsPrice());
|
|
|
}
|
|
|
}
|
|
|
}
|