ZzglController.java 25.3 KB
Newer Older
yuquan.zhu committed
1 2 3 4
package cn.timer.api.controller.zzgl;

import java.util.ArrayList;
import java.util.List;
5
import java.util.stream.Collectors;
yuquan.zhu committed
6 7 8 9

import javax.transaction.Transactional;

import org.springframework.beans.factory.annotation.Autowired;
10
import org.springframework.validation.annotation.Validated;
yuquan.zhu committed
11 12 13 14
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
15
import org.springframework.web.bind.annotation.PutMapping;
yuquan.zhu committed
16 17 18 19 20 21 22 23
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
24
import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapper;
yuquan.zhu committed
25
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
26
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
27

lal committed
28
import cn.hutool.core.bean.BeanUtil;
29
import cn.hutool.core.collection.CollectionUtil;
30 31 32 33
import cn.hutool.core.convert.Convert;
import cn.hutool.core.lang.tree.Tree;
import cn.hutool.core.lang.tree.TreeNodeConfig;
import cn.hutool.core.lang.tree.TreeUtil;
34
import cn.hutool.core.util.StrUtil;
35 36
import cn.timer.api.aspect.lang.annotation.Log;
import cn.timer.api.aspect.lang.enums.BusinessType;
ilal committed
37 38
import cn.timer.api.bean.admin.AdminMenuTemplate;
import cn.timer.api.bean.qyzx.QyzxAdminMenu;
yuquan.zhu committed
39 40 41
import cn.timer.api.bean.yggl.YgglMainEmp;
import cn.timer.api.bean.zzgl.ZzglAuth;
import cn.timer.api.bean.zzgl.ZzglBmgwM;
42 43
import cn.timer.api.bean.zzgl.ZzglMenu;
import cn.timer.api.bean.zzgl.ZzglPostMenu;
yuquan.zhu committed
44 45
import cn.timer.api.config.annotation.CurrentUser;
import cn.timer.api.config.annotation.UserBean;
46
import cn.timer.api.config.enuminterface.YgEnumInterface;
ilal committed
47
import cn.timer.api.controller.kqgl.ClockInTool;
48
import cn.timer.api.controller.zzgl.service.ZzglBmgwMService;
49
import cn.timer.api.dao.yggl.YgglMainEmpMapper;
yuquan.zhu committed
50 51
import cn.timer.api.dao.zzgl.ZzglBmgwMMapper;
import cn.timer.api.dao.zzgl.ZzglLogDgjlMapper;
52 53
import cn.timer.api.dao.zzgl.ZzglMenuMapper;
import cn.timer.api.dao.zzgl.ZzglPostMenuMapper;
ilal committed
54
import cn.timer.api.dto.qyzx.MenuStructureDto;
lal committed
55
import cn.timer.api.dto.zzgl.DepartmentStaffDto;
yuquan.zhu committed
56 57
import cn.timer.api.dto.zzgl.LogDgjlsDto;
import cn.timer.api.dto.zzgl.LogDgjlsQueryDto;
lal committed
58
import cn.timer.api.dto.zzgl.ObtainDepartmentDto;
yuquan.zhu committed
59
import cn.timer.api.dto.zzgl.UpEmpDeptDto;
60
import cn.timer.api.dto.zzgl.ZzglPostMenuDto;
yuquan.zhu committed
61 62 63 64 65 66 67 68 69 70 71 72
import cn.timer.api.utils.Result;
import cn.timer.api.utils.ResultUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;

@Api(tags = "2.组织管理")
@RestController
@Transactional
@RequestMapping(value = "/zzgl", produces = { "application/json" })
public class ZzglController {

	@Autowired
73 74 75
	ZzglBmgwMService zzglBmgwMService;
	
	@Autowired
yuquan.zhu committed
76
	ZzglBmgwMMapper zzglBmgwMMapper;
77 78 79
	
	@Autowired
	ZzglPostMenuMapper zzglPostMenuMapper;
yuquan.zhu committed
80 81

	@Autowired
82
	ZzglLogDgjlMapper zzglLogDgjlMapper;
83 84 85
	
	@Autowired
	YgglMainEmpMapper ygglMainEmpMapper;
yuquan.zhu committed
86 87 88 89 90 91 92 93 94 95 96 97 98

	/**
	 * 架构树/架构图/导出
	 * 
	 * @param
	 * @return
	 */
	@GetMapping(value = "/deptlist")
	@ApiOperation(value = "获取部门岗位", httpMethod = "GET", notes = "接口发布说明")
	public Result<List<ZzglBmgwM>> selectlistdept(@CurrentUser UserBean userBean) {
		Integer orgCode = userBean.getOrgCode();
		List<ZzglBmgwM> zzglBmgwMs = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
				.eq(ZzglBmgwM::getOrgCode, orgCode).list();
99 100
		return ResultUtil.data(zzglBmgwMs);
	}
101
	
102
	/**
103
	 * 获取部门岗位-升级版
104 105 106 107
	 * 
	 * @param
	 * @return
	 */
108
	@GetMapping(value = "/deptlist_plus")
109 110
	@ApiOperation(value = "1.获取部门岗位-升级版", httpMethod = "GET", notes = "接口发布说明")
	@ApiOperationSupport(order = 1)
111
	public Result<List<Tree<String>>> deptlistPlus(@CurrentUser UserBean userBean) {
112 113 114 115 116
		Integer orgCode = userBean.getOrgCode();
		List<ZzglBmgwM> zzglBmgwMs = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
				.eq(ZzglBmgwM::getOrgCode, orgCode).list();
		
		// 构建node列表
117 118 119 120
//		List<TreeNode<String>> nodeList = CollUtil.newArrayList();
//		zzglBmgwMs.forEach(z -> {
//			nodeList.add(new TreeNode<>(Convert.toStr(z.getId()), Convert.toStr(z.getUpId()), z.getName(), 0));
//		});
121 122 123 124 125 126 127 128 129 130
		
		//配置
		TreeNodeConfig treeNodeConfig = new TreeNodeConfig();
		// 自定义属性名 都要默认值的
		treeNodeConfig.setIdKey("id");
		treeNodeConfig.setParentIdKey("upId");
		// 最大递归深度
//		treeNodeConfig.setDeep(10);

		//转换器
131
		List<Tree<String>> treeNodes = TreeUtil.build(zzglBmgwMs, "0", treeNodeConfig,
132
		        (treeNode, tree) -> {
133 134 135
		            tree.setId(Convert.toStr(treeNode.getId()));
		            tree.setParentId(Convert.toStr(treeNode.getUpId()));
//		            tree.setWeight(treeNode.getWeight());
136 137
		            tree.setName(treeNode.getName());
		            // 扩展属性 ...
138
		            tree.putExtra("leader", treeNode.getLeader());
tangzhaoqian committed
139
		            tree.putExtra("type", treeNode.getType());
140 141 142 143
//		            tree.putExtra("other", new Object());
		        });
		
		
tangzhaoqian committed
144 145 146 147 148
		
//		System.out.println(treeNodes);
//		System.out.println(treeNodes.size());
//		System.out.println(deep2(treeNodes));
		
149 150 151
		return ResultUtil.data(treeNodes);
	}
	
tangzhaoqian committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	// 非递归,利用树的层次遍历
//	public static int deep2(List<Tree<String>> treeNodes) {
//		if(treeNodes == null)
//			return 0;
//		int depth = 0;
//		for (Tree<String> tree : treeNodes) {
//			if (tree.getChildren() == null) {
//				depth = tree.size()-1 > depth ? tree.size()-1 : depth;
//				if (Convert.toInt(tree.get("type")) == 1) {
//					depth = depth > 1 ? depth - 1 : depth;
//				}
//				System.out.println("depth = "+ depth);
//			}else {
//				int temp = deep2(tree.getChildren());
//				depth = temp > depth ? temp : depth;
//				System.out.println("temp = "+ temp);
//			}
//		}
//		
//		return depth;
//	}
	
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
	/**
	 * 获取部门
	 * 
	 * @param
	 * @return
	 */
	@GetMapping(value = "/depts_tree")
	@ApiOperation(value = "2.获取部门", httpMethod = "GET", notes = "接口发布说明")
	@ApiOperationSupport(order = 1)
	public Result<List<Tree<String>>> deptsOnlyone(@CurrentUser UserBean userBean) {
		Integer orgCode = userBean.getOrgCode();
		List<ZzglBmgwM> zzglBmgwMs = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
				.eq(ZzglBmgwM::getOrgCode, orgCode).list();
		if (CollectionUtil.isNotEmpty(zzglBmgwMs)) {
			zzglBmgwMs = zzglBmgwMs.stream().filter(z -> z.getType() == 0).collect(Collectors.toList());
			
			if (CollectionUtil.isNotEmpty(zzglBmgwMs)) {
				//配置
				TreeNodeConfig treeNodeConfig = new TreeNodeConfig();
				// 自定义属性名 都要默认值的
				treeNodeConfig.setIdKey("id");
				treeNodeConfig.setParentIdKey("upId");

				//转换器
				List<Tree<String>> treeNodes = TreeUtil.build(zzglBmgwMs, "0", treeNodeConfig,
			        (treeNode, tree) -> {
			            tree.setId(Convert.toStr(treeNode.getId()));
			            tree.setParentId(Convert.toStr(treeNode.getUpId()));
			            tree.setName(treeNode.getName());
			            // 扩展属性 ...
			            tree.putExtra("leader", treeNode.getLeader());
			            tree.putExtra("type", treeNode.getType());
				            
				});
				
				return ResultUtil.data(treeNodes);
			}
			
		}
		
		return ResultUtil.success();
	}
	
217
	@GetMapping(value = "/depts")
218 219
	@ApiOperation(value = "2.获取部门", httpMethod = "GET", notes = "接口发布说明")
	@ApiOperationSupport(order = 2)
220 221 222
	public Result<List<ZzglBmgwM>> selectdepts(@CurrentUser UserBean userBean) {
		Integer orgCode = userBean.getOrgCode();
		List<ZzglBmgwM> zzglBmgwMs = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
223 224 225
				.eq(ZzglBmgwM::getOrgCode, orgCode)
				.eq(ZzglBmgwM::getType, YgEnumInterface.OrgType.DEPARTMENT)
				.list();
226 227
		return ResultUtil.data(zzglBmgwMs);
	}
yuquan.zhu committed
228 229 230 231 232 233 234 235 236

	/**
	 * 岗位成员
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@GetMapping(value = "/otherlistent/{id}")
	@ApiOperation(value = "获取岗位成员列表", httpMethod = "GET", notes = "接口发布说明")
237
	public Result<List<YgglMainEmp>> selectOtherlistent(@CurrentUser UserBean userBean, @PathVariable Integer id) {
yuquan.zhu committed
238 239 240 241 242 243 244
		Integer orgCode = userBean.getOrgCode();
		ArrayList<Integer> list = new ArrayList<Integer>();
		List<ZzglBmgwM> zzglBmgwMs = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
				.eq(ZzglBmgwM::getOrgCode, orgCode).list();
		list.add(id);
		ZzglBmgwM.getDepts(list, id, zzglBmgwMs);

245 246 247
		ZzglBmgwM messsage = ZzglBmgwM.builder().build().selectOne(new QueryWrapper<ZzglBmgwM>().eq("id", id));
		Integer lead = messsage.getLeader(); // 获取部门或岗位领导id

yuquan.zhu committed
248 249 250 251 252 253 254
		if (list == null || list.size() == 0) {
			return ResultUtil.error("部门信息不存在,请先添加部门!");
		} else {
			LambdaQueryWrapper<YgglMainEmp> ygglMainEmpsLambdaQueryWrapper = new LambdaQueryWrapper<>();
			ygglMainEmpsLambdaQueryWrapper
					.select(YgglMainEmp::getId, YgglMainEmp::getEmpNum, YgglMainEmp::getName, YgglMainEmp::getPhone,
							YgglMainEmp::getBmgwId)
255 256
					.eq(YgglMainEmp::getOrgCode, orgCode).and(i -> i.in(YgglMainEmp::getBmgwId, list.toArray()))
					.last(lead != null, "order by if (emp_num='" + lead + "',0,1)");
yuquan.zhu committed
257 258 259 260 261 262 263 264 265 266 267 268 269
			List<YgglMainEmp> ygglMainEmps = YgglMainEmp.builder().build().selectList(ygglMainEmpsLambdaQueryWrapper);
			return ResultUtil.data(ygglMainEmps);
		}
	}

	/**
	 * 获取调岗记录(weng)
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@PostMapping(value = "/listdgjl")
	@ApiOperation(value = "获取调岗记录(weng)", httpMethod = "POST", notes = "接口发布说明")
270 271
	public Result<Object> selectlistdgjl(@CurrentUser UserBean userBean,
			@RequestBody LogDgjlsQueryDto logDgjlsQueryDto) {
yuquan.zhu committed
272 273 274 275 276 277 278 279 280 281
		Integer orgCode = userBean.getOrgCode();
		ArrayList<Integer> list = new ArrayList<Integer>();
		List<ZzglBmgwM> zzglBmgwMs = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
				.eq(ZzglBmgwM::getOrgCode, orgCode).list();
		list.add(logDgjlsQueryDto.getDeptId());
		ZzglBmgwM.getDepts(list, logDgjlsQueryDto.getDeptId(), zzglBmgwMs);

		if (list == null || list.size() == 0) {
			return ResultUtil.error("部门信息不存在,请先添加部门!");
		} else {
282

yuquan.zhu committed
283 284
			logDgjlsQueryDto.setDeptIdList(list);
			logDgjlsQueryDto.setOrgCode(orgCode);
285

yuquan.zhu committed
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
			IPage<LogDgjlsDto> page = new Page<LogDgjlsDto>(
					logDgjlsQueryDto.getCurrentPage() == null ? 1 : logDgjlsQueryDto.getCurrentPage(),
					logDgjlsQueryDto.getTotalPage() == null ? 10 : logDgjlsQueryDto.getTotalPage());
			List<LogDgjlsDto> logDgjlDtos = zzglLogDgjlMapper.selectListdgjls(page, logDgjlsQueryDto);
			return ResultUtil.data(page, logDgjlDtos, "查询成功");
		}
	}

	/**
	 * 未设置岗位的成员
	 * 
	 * @return
	 */
	@GetMapping(value = "/listent")
	@ApiOperation(value = "未设置岗位的成员", httpMethod = "GET", notes = "接口发布说明")
	public Result<List<YgglMainEmp>> selectlistent(@CurrentUser UserBean userBean) {
		Integer orgCode = userBean.getOrgCode();

		LambdaQueryWrapper<YgglMainEmp> ygglMainEmpsLambdaQueryWrapper = new LambdaQueryWrapper<>();
		ygglMainEmpsLambdaQueryWrapper
				.select(YgglMainEmp::getId, YgglMainEmp::getEmpNum, YgglMainEmp::getName, YgglMainEmp::getPhone)
				.eq(YgglMainEmp::getOrgCode, orgCode)
				.and(i -> i.isNull(YgglMainEmp::getBmgwId).or().eq(YgglMainEmp::getBmgwId, 0));
		// .and(lqw -> lqw.notIn(id != null,
		// YgglMainEmp::getBmgwId,Arrays.asList(id)).or().isNull(YgglMainEmp::getBmgwId))
		List<YgglMainEmp> ygglMainEmps = YgglMainEmp.builder().build().selectList(ygglMainEmpsLambdaQueryWrapper);
		// List<ZzglBmgwMEmpDto> zzglBmgwMEmpDtos =
		// zzglBmgwMMapper.selectOtherListByOrgCode(orgCode,id);
		return ResultUtil.data(ygglMainEmps);
	}

	/**
tangzhaoqian committed
318
	 * 添加/修改部门岗位
yuquan.zhu committed
319 320 321 322 323
	 * 
	 * @param
	 * @return
	 */
	@PostMapping(value = "/dept")
324 325
	@ApiOperation(value = "添加/修改部门", httpMethod = "POST", notes = "接口发布说明")
	@Log(title = "添加/修改-部门", businessType = BusinessType.INSERT_UPDATE)
326
	public Result<ZzglBmgwM> adddept(@CurrentUser UserBean userBean, @RequestBody ZzglBmgwM zzglBmgwM) {
327 328 329 330 331 332 333
		
		Integer count = zzglBmgwMMapper.selectCount(new QueryWrapper<ZzglBmgwM>().lambda()
				.eq(ZzglBmgwM::getOrgCode, userBean.getOrgCode()));
		if (count <= 0) {
			// 根部门upId 默认为0
			zzglBmgwM.setUpId(0);
		}
334
		ZzglBmgwM bmgwM = zzglBmgwMMapper.selectById(zzglBmgwM.getUpId());
335
		if(bmgwM !=null) {
336
			if (bmgwM.getType() != 0) {
337 338
				return ResultUtil.error("部门名称上级不能为岗位");
			}
339
		}
340
		if (zzglBmgwM.getLeader() == null && StrUtil.length(StrUtil.trim(zzglBmgwM.getName())) == 0) 
341
			return ResultUtil.error("部门名称不能为空");
342 343 344
		
		Boolean notId = zzglBmgwM.getId() == null;
		if (notId && zzglBmgwM.getType() == null)
yuquan.zhu committed
345
			zzglBmgwM.setType((Integer) 0);
346 347 348 349
			zzglBmgwM.setOrgCode(userBean.getOrgCode());
			zzglBmgwM.insertOrUpdate();
			
		return notId ? ResultUtil.data(zzglBmgwM) : ResultUtil.success();
yuquan.zhu committed
350
	}
351 352 353 354 355 356 357
	/**
	 * 添加/修改部门岗位
	 *
	 * @param
	 * @return
	 */
	@PostMapping(value = "/job")
358 359
	@ApiOperation(value = "添加/修改部门", httpMethod = "POST", notes = "接口发布说明")
	@Log(title = "添加/修改-部门", businessType = BusinessType.INSERT_UPDATE)
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
	public Result<ZzglBmgwM> addjob
	(@CurrentUser UserBean userBean, @RequestBody ZzglBmgwM zzglBmgwM) {



		if (zzglBmgwM.getLeader() == null && StrUtil.length(StrUtil.trim(zzglBmgwM.getName())) == 0)
			return ResultUtil.error("岗位名称不能为空");

		Boolean notId = zzglBmgwM.getId() == null;
		if (notId && zzglBmgwM.getType() == null)
			zzglBmgwM.setType((Integer) 1);
		zzglBmgwM.setOrgCode(userBean.getOrgCode());
		zzglBmgwM.insertOrUpdate();

		return notId ? ResultUtil.data(zzglBmgwM) : ResultUtil.success();
	}



yuquan.zhu committed
379 380 381 382 383 384 385 386
	/**
	 * 删除部门岗位
	 * 
	 * @param 部门岗位ids [1,2,3,4]
	 * @return
	 */
	@DeleteMapping(value = "/dept")
	@ApiOperation(value = "删除部门岗位", httpMethod = "DELETE", notes = "接口发布说明")
tangzhaoqian committed
387
	@Log(title = "删除-部门岗位", businessType = BusinessType.DELETE)
yuquan.zhu committed
388 389
	public Result<Integer> deldepts(@CurrentUser UserBean userBean, @RequestBody List<Integer> ids) {
		YgglMainEmp ygglMainEmp = YgglMainEmp.builder().build();
390
		
yuquan.zhu committed
391
		zzglLogDgjlMapper.insertbydeldept(ids, userBean.getEmpNum());
392 393 394
		ygglMainEmp.update(new UpdateWrapper<YgglMainEmp>().lambda()
				.set(YgglMainEmp::getBmgwId, null)
				.in(YgglMainEmp::getBmgwId, ids));
yuquan.zhu committed
395 396 397 398 399 400 401 402
		zzglBmgwMMapper.deleteBatchIds(ids);

		return ResultUtil.success();
	}

	/**
	 * 批量修改/删除员工部门
	 * 
403
	 * @param 部门岗位id
yuquan.zhu committed
404 405 406 407 408 409 410 411 412 413
	 * @return
	 */
	@PostMapping(value = "/empdept")
	@ApiOperation(value = "批量修改/删除员工部门", httpMethod = "POST", notes = "接口发布说明")
	public Result<Void> updatelistempdept(@CurrentUser UserBean userBean, @RequestBody UpEmpDeptDto upEmpDeptDto) {
		Integer dpetId = upEmpDeptDto.getDpetId();
		List<Integer> empNums = upEmpDeptDto.getEmpNum();
		YgglMainEmp ygglMainEmp = YgglMainEmp.builder().build();
		zzglLogDgjlMapper.insertbyaddemp(empNums, userBean.getEmpNum(), dpetId, userBean.getOrgCode(),
				dpetId == null || dpetId == 0 ? "岗位删除员工" : upEmpDeptDto.getIsdg() == null ? "岗位添加员工" : "员工调岗");
tangzhaoqian committed
414 415 416 417 418 419 420 421
		// 清楚 leader 主管标记
		if ((dpetId == null || dpetId == 0) || upEmpDeptDto.getIsdg() == null) {
			ZzglBmgwM.builder().leader(null).build()
				.update(new UpdateWrapper<ZzglBmgwM>().lambda()
						.eq(ZzglBmgwM::getOrgCode, userBean.getOrgCode())
						.in(ZzglBmgwM::getLeader, empNums));
		}
		
422 423 424 425
		ygglMainEmp.update(new UpdateWrapper<YgglMainEmp>().lambda()
				.set(YgglMainEmp::getBmgwId, dpetId)
				.eq(YgglMainEmp::getOrgCode, userBean.getOrgCode()).in(YgglMainEmp::getEmpNum, empNums));

yuquan.zhu committed
426 427
		return ResultUtil.success();
	}
428
	
yuquan.zhu committed
429 430 431 432 433 434 435 436 437 438 439 440 441
	/**
	 * 岗位权限
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@GetMapping(value = "/auth/{id}")
	@ApiOperation(value = "获取岗位岗位权限", httpMethod = "GET", notes = "接口发布说明")
	public Result<List<ZzglAuth>> auth(@CurrentUser UserBean userBean, @PathVariable Integer id) {
		Integer orgCode = userBean.getOrgCode();
		ArrayList<Integer> list = new ArrayList<Integer>();
		List<ZzglBmgwM> zzglBmgwMs = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
				.eq(ZzglBmgwM::getOrgCode, orgCode).list();
442
				ZzglBmgwM.getupDepts(list, id, zzglBmgwMs);
yuquan.zhu committed
443 444 445 446 447 448 449
		if (list == null || list.size() == 0) {
			return ResultUtil.error("部门信息不存在,请先添加部门!");
		} else {
			LambdaQueryWrapper<ZzglAuth> wp = new LambdaQueryWrapper<>();
			wp.select(ZzglAuth::getMenuId, ZzglAuth::getBmgwId).eq(ZzglAuth::getOrgCode, orgCode)
					.and(i -> i.in(ZzglAuth::getBmgwId, list.toArray()));
			List<ZzglAuth> zas = ZzglAuth.builder().build().selectList(wp);
ilal committed
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
			
			
			
			List<MenuStructureDto> mestrs = new ArrayList<MenuStructureDto>();
			List<QyzxAdminMenu> qyme = QyzxAdminMenu.builder().build().selectList(new QueryWrapper<QyzxAdminMenu>().lambda().eq(QyzxAdminMenu::getOrgCode, userBean.getOrgCode()).orderByAsc(QyzxAdminMenu::getSortNumber));
			String[] zdy = new String[qyme.size()];
			int i  = 0;
			for(QyzxAdminMenu me : qyme) {
				MenuStructureDto metr = MenuStructureDto.builder().build();
				metr.setMenuCode(me.getMenuCode());
				metr.setMenuName(me.getMenuName());
				metr.setSortNumber(me.getSortNumber());
				AdminMenuTemplate adte = AdminMenuTemplate.builder().build().selectOne(new QueryWrapper<AdminMenuTemplate>().lambda().eq(AdminMenuTemplate::getMenuCode, me.getMenuCode()));
				metr.setPath(adte.getPath());
				mestrs.add(metr);
				zdy[i] = me.getMenuCode();
				i++;
			}	
			//
			List<AdminMenuTemplate> adtes = AdminMenuTemplate.builder().build().selectList(new QueryWrapper<AdminMenuTemplate>().lambda().eq(AdminMenuTemplate::getEnable, 1).orderByAsc(AdminMenuTemplate::getSortNumber));
			for(AdminMenuTemplate adm : adtes) {
				
				if(!ClockInTool.useArrayUtils(ClockInTool.deleteArrayNull(zdy), adm.getMenuCode())) {
					if(adm.getDistribution() == 0 && userBean.getOrgCode() == 3) {
						MenuStructureDto metr = MenuStructureDto.builder().build();
						metr.setMenuCode(adm.getMenuCode());
						metr.setMenuName(adm.getMenuName());
						metr.setSortNumber(adm.getSortNumber());
						metr.setPath(adm.getPath());
						mestrs.add(metr);
					}else if(adm.getDistribution() == 1) {
						MenuStructureDto metr = MenuStructureDto.builder().build();
						metr.setMenuCode(adm.getMenuCode());
						metr.setMenuName(adm.getMenuName());
						metr.setSortNumber(adm.getSortNumber());
						metr.setPath(adm.getPath());
						mestrs.add(metr);
					}
				}
			}
			
			List<ZzglAuth> zas_ = new ArrayList<ZzglAuth>();
			String[] qhf = new String[mestrs.size()];
			int y = 0;
			for(MenuStructureDto metu : mestrs) {
				ZzglAuth zd = ZzglAuth.builder().build();
				 for(ZzglAuth zg : zas) {
					if(metu.getPath().equals(zg.getMenuId())) {
						zd.setBmgwId(zg.getBmgwId());
						zd.setMenuId(zg.getMenuId());
						zas_.add(zd);
						qhf[y] = zg.getMenuId();
						y++;
						break; 
					}
				}
			}
			
			for(ZzglAuth zg : zas) {
				if(!ClockInTool.useArrayUtils(ClockInTool.deleteArrayNull2(qhf), zg.getMenuId())) {
					ZzglAuth zd = ZzglAuth.builder().build();
					zd.setBmgwId(zg.getBmgwId());
					zd.setMenuId(zg.getMenuId());
					zas_.add(zd);
				}
			}
			
			
			return ResultUtil.data(zas_);
yuquan.zhu committed
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
		}
	}

	/**
	 * 批量修改/删除岗位权限
	 * 
	 * @param 部门岗位id
	 * @param 菜单ids
	 * @return
	 */
	@PostMapping(value = "/auth/{id}")
	@ApiOperation(value = "批量修改/删除岗位权限", httpMethod = "POST", notes = "接口发布说明")
	public Result<Void> auth(@CurrentUser UserBean userBean, @PathVariable Integer id, @RequestBody List<String> ids) {
		Integer orgCode = userBean.getOrgCode();
		ZzglAuth.builder().build().delete(
				new QueryWrapper<ZzglAuth>().lambda().eq(ZzglAuth::getOrgCode, orgCode).eq(ZzglAuth::getBmgwId, id));
		ids.forEach(o -> {
			ZzglAuth za = ZzglAuth.builder().build();
			za.setBmgwId(id);
			za.setOrgCode(orgCode);
			za.setMenuId(o);
			za.insert();
		});
		return ResultUtil.success();
	}
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
	
	@Autowired
	private ZzglMenuMapper zzglMenuMapper;
	
	/**
	 * 获取-菜单权限列表
	 * 
	 * @return
	 */
	@GetMapping(value = "/menu")
	@ApiOperation(value = "获取-菜单权限列表", httpMethod = "GET", notes = "接口发布说明")
	public Result<List<ZzglMenu>> selectMenu(@CurrentUser UserBean userBean) {
		
		List<ZzglMenu> list = zzglMenuMapper.selectList(null);
		
		return ResultUtil.data(list);
	}
	
	/**
	 * 获取-菜单权限-搜索
	 * 
	 * @return
	 */
//	@PostMapping(value = "/querymenu")
//	@ApiOperation(value = "获取-菜单权限-搜索", httpMethod = "POST", notes = "接口发布说明")
//	public Result<List<Tree<String>>> queryMenu(@CurrentUser UserBean userBean,@RequestBody ZzglMenuQueryDto zzglMenuQueryDto) {
//		
//		List<ZzglMenu> list = zzglMenuMapper.queryList(zzglMenuQueryDto);
//		
//		//配置
//		TreeNodeConfig treeNodeConfig = new TreeNodeConfig();
//		// 自定义属性名 都要默认值的
////		treeNodeConfig.setIdKey("id");
////		treeNodeConfig.setParentIdKey("upId");
//		treeNodeConfig.setNameKey("menuName");
//		// 最大递归深度
////		treeNodeConfig.setDeep(10);
//
//		//转换器
//		List<Tree<String>> treeNodes = TreeUtil.build(list, "0", treeNodeConfig,
//		        (treeNode, tree) -> {
//		            tree.setId(Convert.toStr(treeNode.getMenuId()));
//		            tree.setParentId(Convert.toStr(treeNode.getParentId()));
////				            tree.setWeight(treeNode.getWeight());
//		            tree.setName(treeNode.getMenuName());
//		            // 扩展属性 ...
//		            tree.putExtra("icon", treeNode.getIcon());
//		            tree.putExtra("isFrame", treeNode.getIsFrame());
//		            tree.putExtra("menuType", treeNode.getMenuType());
//		            tree.putExtra("orderNum", treeNode.getOrderNum());
//		            tree.putExtra("path", treeNode.getPath());
//		            tree.putExtra("perms", treeNode.getPerms());
//		            tree.putExtra("remark", treeNode.getRemark());
//		            tree.putExtra("visible", treeNode.getVisible());
////				    tree.putExtra("other", new Object());
//		        });
//		
//		return ResultUtil.data(treeNodes);
//	}
	
	/**
	 * 新增-菜单权限
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@PostMapping(value = "/menu")
	@ApiOperation(value = "新增-菜单权限", httpMethod = "POST", notes = "接口发布说明")
	public Result<List<ZzglMenu>> insertPostMenus(@Validated @RequestBody ZzglMenu zzglMenu) {
		
		Integer conut = zzglMenuMapper.selectCount(new QueryWrapper<ZzglMenu>().lambda()
				.eq(ZzglMenu::getMenuId, zzglMenu.getParentId()));
		if (conut <= 0) {
			return ResultUtil.error("上级权限不存在!");
		}
		
		return zzglMenu.insert() ? ResultUtil.success() : ResultUtil.error();
	}
	
	/**
	 * 删除-菜单权限
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@DeleteMapping(value = "/menu/{id}")
	@ApiOperation(value = "删除-菜单权限", httpMethod = "DELETE", notes = "接口发布说明")
	public Result<List<ZzglMenu>> deletePostMenus(@Validated @RequestBody Integer id) {
		
		return zzglMenuMapper.deleteById(id) > 0 ? ResultUtil.success() : ResultUtil.error();
	}
	
	/**
	 * 修改-菜单权限
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@PutMapping(value = "/menu/{id}")
	@ApiOperation(value = "修改-菜单权限", httpMethod = "PUT", notes = "接口发布说明")
	public Result<List<ZzglMenu>> updatePostMenus(@Validated @RequestBody ZzglMenu zzglMenu) {
		
		return zzglMenu.updateById() ? ResultUtil.success() : ResultUtil.error();
	}
	
	/**
	 * 获取-该岗位的菜单权限
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@GetMapping(value = "/menu/{id}")
	@ApiOperation(value = "获取-该岗位的菜单权限", httpMethod = "GET", notes = "接口发布说明")
	public Result<List<Integer>> selectMenuByPostId(@CurrentUser UserBean userBean,@PathVariable Integer id) {
		
		return ResultUtil.data(zzglBmgwMService.selectMenuByPostId(id));
	}
	
	/**
	 * 修改-该岗位的菜单权限
	 * 
	 * @param 部门岗位id
	 * @return
	 */
	@PutMapping(value = "/post_menu")
	@ApiOperation(value = "修改-该岗位的菜单权限", httpMethod = "PUT", notes = "接口发布说明")
	public Result<List<ZzglMenu>> updatePostMenus(@CurrentUser UserBean userBean,@RequestBody ZzglPostMenuDto zzglPostMenuDto) {
		
		Integer delCount = zzglPostMenuMapper.delete(new QueryWrapper<ZzglPostMenu>().lambda()
				.eq(ZzglPostMenu::getBmgwId, zzglPostMenuDto.getId()));
		Integer updateCount = zzglPostMenuMapper.insertPostMenus(zzglPostMenuDto.getId(),zzglPostMenuDto.getMenus());
		
		return ResultUtil.success();
	}
	
lal committed
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
	
	@GetMapping(value = "/appdeptlist")
	@ApiOperation(value = "APP获取部门岗位", httpMethod = "GET", notes = "接口发布说明")
	public Result<Object> selectapplistdept(@CurrentUser UserBean userBean) {
		Integer orgCode = userBean.getOrgCode();
		List<ObtainDepartmentDto> tmen = new ArrayList<ObtainDepartmentDto>();
		
		List<ZzglBmgwM> zzglbmgwms = new LambdaQueryChainWrapper<ZzglBmgwM>(zzglBmgwMMapper)
				.eq(ZzglBmgwM::getOrgCode, userBean.getOrgCode()).eq(ZzglBmgwM::getType, 0).list();
		for(ZzglBmgwM gw : zzglbmgwms) {
			ObtainDepartmentDto tm = ObtainDepartmentDto.builder().build();
			BeanUtil.copyProperties(gw, tm);
			
			List<DepartmentStaffDto> destff = ygglMainEmpMapper.DepartmentStaff(orgCode,gw.getId());
			tm.setUser(destff);
			
			tmen.add(tm);
		}
		
		return ResultUtil.data(tmen);
	}
yuquan.zhu committed
700
}