‘linchangsheng’ il y a 2 semaines
Parent
commit
08245e2608

+ 1 - 1
src/main/java/com/gree/mall/manager/commonmapper/CustomGoodsMapper.java

@@ -43,7 +43,7 @@ public interface CustomGoodsMapper {
                                   @Param("categoryId") List<String> categoryId,
                                   @Param("status") Boolean status,
                                   @Param("goodsTypes") List<String> goodsTypes,
-                                  @Param("companyWechatIds")List<String> companyWechatIds);
+                                  @Param("companyWechatId")String companyWechatId);
 
     @SqlParser(filter = true)
     List<GoodsSpecBean> list(@Param("commonTemplateId") String commonTemplateId);

+ 2 - 2
src/main/java/com/gree/mall/manager/logic/goods/GoodsLogic.java

@@ -133,7 +133,7 @@ public class GoodsLogic {
         }
 
         IPage<GoodsSpecBean> goodsSpecBeanIPage = customGoodsMapper.pageList(new Page<>(pageNum, pageSize), flag, keyword, startPrice,
-                endPrice, startShare, endShare, sortStr, categoryIds, status, goodsTypes,companyWechatIds);
+                endPrice, startShare, endShare, sortStr, categoryIds, status, goodsTypes,adminUser.getCompanyWechatId());
 
         //商品规格
         for (GoodsSpecBean goodsSpecBean : goodsSpecBeanIPage.getRecords()) {
@@ -200,7 +200,7 @@ public class GoodsLogic {
 
 
         IPage<GoodsSpecBean> goodsSpecBeanIPage = customGoodsMapper.pageList(new Page<>(1, -1), null, null, null,
-                null, null, null, null, categoryIds, null, null,companyWechatIds);
+                null, null, null, null, categoryIds, null, null,adminUser.getCompanyWechatId());
         //添加规格
         List<GoodsSpecBean> records = goodsSpecBeanIPage.getRecords();
         for (GoodsSpecBean record : records) {

+ 3 - 5
src/main/resources/mapper/CustomGoodsMapper.xml

@@ -20,11 +20,9 @@
         left join goods_category t3 on t3.category_id = t1.category_id
         WHERE
         t1.del = 0
-        <if test='companyWechatIds != null and companyWechatIds.size > 0' >
-            AND t1.company_wechat_id  in
-            <foreach collection="companyWechatIds" open="(" close=")" item="companyWechatId" separator=",">
-                #{companyWechatId}
-            </foreach>
+        <if test='companyWechatId != null and companyWechatId != "" ' >
+            AND FIND_IN_SET( #{companyWechatId},t1.company_wechat_id) > 0
+
         </if>
         <if test='goodsTypes != null and goodsTypes.size > 0' >
             AND t1.goods_type  in