‘linchangsheng’ il y a 2 semaines
Parent
commit
301e7057cd

+ 1 - 1
src/main/java/com/gree/mall/miniapp/commonmapper/SecActivityStageMapper.java

@@ -25,6 +25,6 @@ public interface SecActivityStageMapper {
     /**
      * 查询改商品的秒杀活动明细
      */
-    SecKillActivitySpec getSecKillActivitySpecByGoodId(@Param("companyWechatId")String companyWechatId,@Param("goodId") String goodId);
+    SecKillActivitySpec getSecKillActivitySpecByGoodId(@Param("goodId") String goodId);
 
 }

+ 3 - 3
src/main/java/com/gree/mall/miniapp/logic/goods/GoodsLogic.java

@@ -82,7 +82,7 @@ public class GoodsLogic {
                 currentCompanyWechat.getUser().getUserId(), currentCompanyWechat.getUser().getType(),
                 keyword, categoryId,sort,null);
 
-        this.supplyGoodsNewBean(page,currentCompanyWechat);
+      //  this.supplyGoodsNewBean(page,currentCompanyWechat);
         return page;
     }
 
@@ -94,7 +94,7 @@ public class GoodsLogic {
             if(goodsNewBean == null){
                 continue;
             }
-            SecKillActivitySpec secKillActivitySpec = secActivityStageMapper.getSecKillActivitySpecByGoodId(currentCompanyWechat.getCurrentCompanyWechatId(),goodsNewBean.getGoodsId());
+            SecKillActivitySpec secKillActivitySpec = secActivityStageMapper.getSecKillActivitySpecByGoodId(goodsNewBean.getGoodsId());
             if(secKillActivitySpec != null){
                 goodsNewBean.setOrgGoodsPrice(secKillActivitySpec.getGoodsPrice());
                 goodsNewBean.setGoodsPrice(secKillActivitySpec.getPrice());
@@ -435,7 +435,7 @@ public class GoodsLogic {
             throw new RemoteServiceException("非分销员不可降价分享");
         }
         //覆盖其上秒杀价格
-        SecKillActivitySpec secKillActivitySpec = secActivityStageMapper.getSecKillActivitySpecByGoodId(companyWechatId,goodsId);
+        SecKillActivitySpec secKillActivitySpec = secActivityStageMapper.getSecKillActivitySpecByGoodId(goodsId);
         if(secKillActivitySpec != null){
             //秒杀的分佣金额
             BigDecimal amount = secKillActivitySpec.getAmount();