博客
关于我
四十一.属性分组新建关联-查询出分组未关联的属性
阅读量:246 次
发布时间:2019-02-28

本文共 2221 字,大约阅读时间需要 7 分钟。

属性分组下的新建关联功能如下:

在这里插入图片描述
在这里插入图片描述

接下来需要查询出分组未关联的属性。

AttrGroupController类添加如下接口:

/**     * 查询分组未关联的属性     *     * @param attrgroupId     * @param params     * @return     */    @GetMapping("/{attrgroupId}/noattr/relation")    public R attrNoRelation(@PathVariable("attrgroupId") Long attrgroupId,                            @RequestParam Map
params) { PageUtils page = attrService.getNoRelationAttr(params, attrgroupId); return R.ok().put("page", page); }

AttrService类添加如下方法:

/**     * 查询出分组未关联的属性     *     * @param params     * @param attrgroupId     * @return     */    PageUtils getNoRelationAttr(Map
params, Long attrgroupId);

AttrServiceImpl类添加getNoRelationAttr()方法相关实现:

@Override    public PageUtils getNoRelationAttr(Map
params, Long attrgroupId) { //1、当前分组只能关联自己所属的分类里面的所有属性 AttrGroupEntity attrGroupEntity = attrGroupDao.selectById(attrgroupId); Long catelogId = attrGroupEntity.getCatelogId(); //2、当前分组只能关联别的分组没有引用的属性 //2-1.查询当前分类下的其他分组 List
attrGroupEntities = attrGroupDao.selectList(new QueryWrapper
().eq("catelog_id", catelogId)); List
collect = attrGroupEntities.stream().map(item -> { return item.getAttrGroupId(); }).collect(Collectors.toList()); //2-2、查询分组关联的属性 List
attrgroupRelationEntities = relationDao.selectList(new QueryWrapper
().in("attr_group_id", collect)); List
attrIds = attrgroupRelationEntities.stream().map(item -> { return item.getAttrId(); }).collect(Collectors.toList()); //2-3、从当前分类的所有属性中移除这些属性 QueryWrapper
wrapper = new QueryWrapper
().eq("catelog_id", catelogId).eq("attr_type", ProductConstant.AttrEnum.ATTR_TYPE_BASE.getCode()); if (attrIds != null && attrIds.size() > 0) { wrapper.notIn("attr_id", attrIds); } //支持模糊查询 String key = (String) params.get("key"); if (!StringUtils.isEmpty(key)) { wrapper.and((w) -> { w.eq("attr_id", key).or().like("attr_name", key); }); } IPage
page = this.page(new Query
().getPage(params), wrapper); PageUtils pageUtils = new PageUtils(page); return pageUtils; }

测试效果:

影视分类有如下两个属性:

在这里插入图片描述
影视相关分组已经关联了一个属性,如下:
在这里插入图片描述
在这里插入图片描述

点击新建关联,会查询出分组未关联的属性,如下:

在这里插入图片描述

查询出分组未关联的属性完成。

转载地址:http://sxjp.baihongyu.com/

你可能感兴趣的文章
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>
mysql CONCAT()函数拼接有NULL
查看>>
multiprocessing.Manager 嵌套共享对象不适用于队列
查看>>
multiprocessing.pool.map 和带有两个参数的函数
查看>>
MYSQL CONCAT函数
查看>>
multiprocessing.Pool:map_async 和 imap 有什么区别?
查看>>
MySQL Connector/Net 句柄泄露
查看>>