|
@@ -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()
|