|
@@ -6,7 +6,6 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.gree.mall.manager.bean.admin.AdminDeptTree;
|
|
|
import com.gree.mall.manager.bean.admin.AdminDeptWebsitVO;
|
|
|
import com.gree.mall.manager.bean.admin.AdminUserCom;
|
|
|
-import com.gree.mall.manager.bean.admin.reqDto.AdminUserPermissions;
|
|
|
import com.gree.mall.manager.commonmapper.AdminMapper;
|
|
|
import com.gree.mall.manager.exception.RemoteServiceException;
|
|
|
import com.gree.mall.manager.logic.common.CommonLogic;
|
|
@@ -19,6 +18,7 @@ import com.gree.mall.manager.plus.service.AdminDeptWebsitService;
|
|
|
import com.gree.mall.manager.plus.service.AdminUserPermissionsRelaService;
|
|
|
import com.gree.mall.manager.plus.service.AdminWebsitService;
|
|
|
import com.gree.mall.manager.utils.StringUtil;
|
|
|
+import com.gree.mall.manager.zfire.bean.QueryParamBean;
|
|
|
import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
|
import com.gree.mall.manager.zfire.util.FieldUtils;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
@@ -51,17 +51,10 @@ public class AdminDeptLogic {
|
|
|
public List<AdminDeptTree> tree(HttpServletRequest request) {
|
|
|
final AdminUserCom adminUser = commonLogic.getAdminUser();
|
|
|
|
|
|
- List<AdminDept> list;
|
|
|
- if (adminUser.getType() == 0) {
|
|
|
- list = adminDeptService.lambdaQuery()
|
|
|
+ List<AdminDept> list = adminDeptService.lambdaQuery()
|
|
|
+ .in(CollectionUtil.isNotEmpty(adminUser.getAdminCompanyIds()), AdminDept::getCompanyWechatId, adminUser.getAdminCompanyIds())
|
|
|
.eq(AdminDept::getAdminDeptId, "1")
|
|
|
.list();
|
|
|
- } else {
|
|
|
- list = adminDeptService.lambdaQuery()
|
|
|
- .eq(AdminDept::getCompanyWechatId, adminUser.getLoginCompanyWechatId())
|
|
|
- .eq(AdminDept::getPId, "1")
|
|
|
- .list();
|
|
|
- }
|
|
|
|
|
|
List<AdminDeptTree> trees = new ArrayList<>();
|
|
|
for (AdminDept adminDept : list) {
|
|
@@ -101,10 +94,40 @@ public class AdminDeptLogic {
|
|
|
//获取当前登录企业id
|
|
|
AdminUserCom adminUser = commonLogic.getAdminUser();
|
|
|
|
|
|
+ boolean isAll = false;
|
|
|
+ if (CollectionUtil.isNotEmpty(zfireParam.getParams())) {
|
|
|
+ for (QueryParamBean param : zfireParam.getParams()) {
|
|
|
+ if (param.getParam().equals("admin_dept_id") && param.getValue().equals("1")) {
|
|
|
+ isAll = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
//1.组装查询条件
|
|
|
FieldUtils.supplyParam(zfireParam, AdminDeptWebsitVO.class);
|
|
|
|
|
|
IPage<AdminDeptWebsitVO> adminDeptWebsitVOIPage = adminMapper.list(page, zfireParam);
|
|
|
+ if (isAll) {
|
|
|
+ final List<AdminWebsit> websitList = adminWebsitService.lambdaQuery()
|
|
|
+ .list();
|
|
|
+ if (CollectionUtil.isNotEmpty(websitList)) {
|
|
|
+ List<AdminDeptWebsitVO> voList = new ArrayList<>();
|
|
|
+ for (AdminWebsit websit : websitList) {
|
|
|
+ AdminDeptWebsitVO vo = new AdminDeptWebsitVO();
|
|
|
+ vo.setAdminDeptId("1");
|
|
|
+ vo.setDeptName("平台");
|
|
|
+ vo.setWebsitId(websit.getWebsitId());
|
|
|
+ vo.setWebsitName(websit.getName());
|
|
|
+ voList.add(vo);
|
|
|
+ }
|
|
|
+ if (CollectionUtil.isNotEmpty(voList)) {
|
|
|
+ adminDeptWebsitVOIPage.setTotal(voList.size());
|
|
|
+ adminDeptWebsitVOIPage.setPages(1);
|
|
|
+ adminDeptWebsitVOIPage.setRecords(voList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
return adminDeptWebsitVOIPage;
|
|
|
}
|
|
|
|