Browse Source

no message

FengChaoYu 1 week ago
parent
commit
0379beb1b9

+ 3 - 2
src/main/java/com/gree/mall/manager/commonmapper/CustomGoodsCategoryMapper.java

@@ -8,7 +8,8 @@ import java.util.List;
 public interface CustomGoodsCategoryMapper {
 
 
-    List<GoodsCategoryBean> list(@Param("level") Integer level, @Param("status") Boolean status,
-                                 @Param("name") String name,@Param("companyIds") List<String> companyIds);
+    List<GoodsCategoryBean> list(@Param("level") Integer level,
+                                 @Param("status") Boolean status,
+                                 @Param("name") String name);
 
 }

+ 1 - 6
src/main/java/com/gree/mall/manager/logic/goods/GoodsCategoryLogic.java

@@ -3,11 +3,9 @@ package com.gree.mall.manager.logic.goods;
 import com.gree.mall.manager.bean.admin.AdminUserCom;
 import com.gree.mall.manager.bean.goods.GoodsCategoryBean;
 import com.gree.mall.manager.commonmapper.CustomGoodsCategoryMapper;
-import com.gree.mall.manager.exception.RemoteServiceException;
 import com.gree.mall.manager.logic.common.CommonLogic;
 import com.gree.mall.manager.plus.entity.GoodsCategory;
 import com.gree.mall.manager.plus.service.GoodsCategoryService;
-import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
 import org.springframework.transaction.annotation.Transactional;
@@ -38,10 +36,9 @@ public class GoodsCategoryLogic {
     public List<GoodsCategoryBean> list(Integer level, String name, Boolean status, HttpServletRequest request) {
         //获取当前登录企业微信id
         AdminUserCom adminUser = commonLogic.getAdminUser(request);
-      //  List<String> companyWechatIds = adminUser.getAdminCompanyIds();
 
 
-        return customGoodsCategoryMapper.list(level, status, name, null);
+        return customGoodsCategoryMapper.list(level, status, name);
     }
 
     /**
@@ -51,8 +48,6 @@ public class GoodsCategoryLogic {
      */
     @Transactional(rollbackFor = Exception.class)
     public void add(GoodsCategoryBean goodsCategoryBean, HttpServletRequest request) {
-        AdminUserCom adminUser = commonLogic.getAdminUser(request);
-
         Date createDate = new Date();
         if (goodsCategoryBean.getChildren() != null) {
             List<GoodsCategory> goodsCategoryList = goodsCategoryBean.getChildren()

+ 0 - 6
src/main/resources/mapper/CustomGoodsCategoryMapper.xml

@@ -37,12 +37,6 @@
             <if test='name != null'>
                 AND name like concat('%',#{name,jdbcType=VARCHAR},'%')
             </if>
-            <if test=' companyIds != null and companyIds.size > 0' >
-                AND company_id in
-                <foreach collection="companyIds" open="(" close=")" item="companyId" separator=",">
-                     #{companyId}
-                </foreach>
-            </if>
         </where>
         order by sort_num desc