懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
package cn.stylefeng.guns.sys.modular.rest.service;
 
import cn.hutool.core.bean.BeanUtil;
import cn.stylefeng.guns.base.enums.CommonStatus;
import cn.stylefeng.guns.base.pojo.node.ZTreeNode;
import cn.stylefeng.guns.base.pojo.page.LayuiPageFactory;
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.sys.core.exception.enums.BizExceptionEnum;
import cn.stylefeng.guns.sys.modular.rest.entity.RestDict;
import cn.stylefeng.guns.sys.modular.rest.entity.RestDictType;
import cn.stylefeng.guns.sys.modular.rest.mapper.RestDictMapper;
import cn.stylefeng.guns.sys.modular.system.model.params.DictParam;
import cn.stylefeng.guns.sys.modular.system.model.result.DictResult;
import cn.stylefeng.roses.core.util.ToolUtil;
import cn.stylefeng.roses.kernel.model.exception.RequestEmptyException;
import cn.stylefeng.roses.kernel.model.exception.ServiceException;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 基础字典 服务实现类
 * </p>
 *
 * @author stylefeng
 * @since 2019-03-13
 */
@Service
public class RestDictService extends ServiceImpl<RestDictMapper, RestDict> {
 
    @Resource
    private RestDictTypeService restDictTypeService;
 
    /**
     * 新增
     *
     * @author stylefeng
     * @Date 2019-03-13
     */
    public void add(DictParam param) {
 
        //判断是否已经存在同编码或同名称字典
        QueryWrapper<RestDict> dictQueryWrapper = new QueryWrapper<>();
        dictQueryWrapper
                .and(i -> i.eq("code", param.getCode()).or().eq("name", param.getName()))
                .and(i -> i.eq("dict_type_id", param.getDictTypeId()));
        List<RestDict> list = this.list(dictQueryWrapper);
        if (list != null && list.size() > 0) {
            throw new ServiceException(BizExceptionEnum.DICT_EXISTED);
        }
 
        RestDict entity = getEntity(param);
 
        //设置pids
        dictSetPids(entity);
 
        //设置状态
        entity.setStatus(CommonStatus.ENABLE.getCode());
 
        this.save(entity);
    }
 
    /**
     * 删除
     *
     * @author stylefeng
     * @Date 2019-03-13
     */
    public void delete(DictParam param) {
 
        //删除字典的所有子级
        List<Long> subIds = getSubIds(param.getDictId());
        if (subIds.size() > 0) {
            this.removeByIds(subIds);
        }
 
        this.removeById(getKey(param));
    }
 
    /**
     * 更新
     *
     * @author stylefeng
     * @Date 2019-03-13
     */
    public void update(DictParam param) {
        RestDict oldEntity = getOldEntity(param);
        RestDict newEntity = getEntity(param);
        ToolUtil.copyProperties(newEntity, oldEntity);
 
        //判断编码是否重复
        QueryWrapper<RestDict> wrapper = new QueryWrapper<RestDict>()
                .and(i -> i.eq("code", newEntity.getCode()).or().eq("name", newEntity.getName()))
                .and(i -> i.ne("dict_id", newEntity.getDictId()))
                .and(i -> i.eq("dict_type_id", param.getDictTypeId()));
        int dicts = this.count(wrapper);
        if (dicts > 0) {
            throw new ServiceException(BizExceptionEnum.DICT_EXISTED);
        }
 
        //设置pids
        dictSetPids(newEntity);
 
        this.updateById(newEntity);
    }
 
    /**
     * 查询单条数据,Specification模式
     *
     * @author stylefeng
     * @Date 2019-03-13
     */
    public DictResult findBySpec(DictParam param) {
        return null;
    }
 
    /**
     * 查询列表,Specification模式
     *
     * @author stylefeng
     * @Date 2019-03-13
     */
    public List<DictResult> findListBySpec(DictParam param) {
        return null;
    }
 
    /**
     * 查询分页数据,Specification模式
     *
     * @author stylefeng
     * @Date 2019-03-13
     */
    public LayuiPageInfo findPageBySpec(DictParam param) {
        QueryWrapper<RestDict> objectQueryWrapper = new QueryWrapper<>();
        objectQueryWrapper.eq("dict_type_id", param.getDictTypeId());
 
        if (ToolUtil.isNotEmpty(param.getCondition())) {
            objectQueryWrapper.and(i -> i.eq("code", param.getCondition()).or().eq("name", param.getCondition()));
        }
 
        objectQueryWrapper.orderByAsc("sort");
 
        List<RestDict> list = this.list(objectQueryWrapper);
 
        //创建根节点
        RestDict dict = new RestDict();
        dict.setName("根节点");
        dict.setDictId(0L);
        dict.setParentId(-999L);
        list.add(dict);
 
        LayuiPageInfo result = new LayuiPageInfo();
        result.setData(list);
 
        return result;
    }
 
    /**
     * 获取字典的树形列表(ztree结构)
     *
     * @author fengshuonan
     * @Date 2019/3/14 3:40 PM
     */
    public List<ZTreeNode> dictTreeList(Long dictTypeId, Long dictId) {
        if (dictTypeId == null) {
            throw new RequestEmptyException();
        }
 
        List<ZTreeNode> tree = this.baseMapper.dictTree(dictTypeId);
 
        //获取dict的所有子节点
        List<Long> subIds = getSubIds(dictId);
 
        //如果传了dictId,则在返回结果里去掉
        List<ZTreeNode> resultTree = new ArrayList<>();
        for (ZTreeNode zTreeNode : tree) {
 
            //如果dictId等于树节点的某个id则去除
            if (ToolUtil.isNotEmpty(dictId) && dictId.equals(zTreeNode.getId())) {
                continue;
            }
            if (subIds.contains(zTreeNode.getId())) {
                continue;
            }
            resultTree.add(zTreeNode);
        }
 
        resultTree.add(ZTreeNode.createParent());
 
        return resultTree;
    }
 
    /**
     * 查看dict的详情
     *
     * @author fengshuonan
     * @Date 2019/3/14 5:22 PM
     */
    public DictResult dictDetail(Long dictId) {
        if (ToolUtil.isEmpty(dictId)) {
            throw new RequestEmptyException();
        }
 
        DictResult dictResult = new DictResult();
 
        //查询字典
        RestDict detail = this.getById(dictId);
        if (detail == null) {
            throw new RequestEmptyException();
        }
 
        //查询父级字典
        if (ToolUtil.isNotEmpty(detail.getParentId())) {
            Long parentId = detail.getParentId();
            RestDict dictType = this.getById(parentId);
            if (dictType != null) {
                dictResult.setParentName(dictType.getName());
            } else {
                dictResult.setParentName("无父级");
            }
        }
 
        ToolUtil.copyProperties(detail, dictResult);
 
        return dictResult;
    }
 
    /**
     * 查询字典列表,通过字典类型
     *
     * @author fengshuonan
     * @Date 2019-06-20 15:14
     */
    public List<RestDict> listDicts(Long dictTypeId) {
 
        QueryWrapper<RestDict> objectQueryWrapper = new QueryWrapper<>();
        objectQueryWrapper.eq("dict_type_id", dictTypeId);
 
        List<RestDict> list = this.list(objectQueryWrapper);
 
        if (list == null) {
            return new ArrayList<>();
        } else {
            return list;
        }
 
    }
 
    /**
     * 查询字典列表,通过字典类型code
     *
     * @author fengshuonan
     * @Date 2019-06-20 15:14
     */
    public List<RestDict> listDictsByCode(String dictTypeCode) {
 
        QueryWrapper<RestDictType> wrapper = new QueryWrapper<>();
        wrapper.eq("code", dictTypeCode);
 
        RestDictType one = this.restDictTypeService.getOne(wrapper);
        return listDicts(one.getDictTypeId());
    }
 
    /**
     * 查询字典列表,通过字典类型code
     *
     * @author fengshuonan
     * @Date 2019-06-20 15:14
     */
    public List<Map<String, Object>> getDictsByCodes(List<String> dictCodes) {
 
        QueryWrapper<RestDict> wrapper = new QueryWrapper<>();
        wrapper.in("code", dictCodes).orderByAsc("sort");
 
        ArrayList<Map<String, Object>> results = new ArrayList<>();
 
        //转成map
        List<RestDict> list = this.list(wrapper);
        for (RestDict dict : list) {
            Map<String, Object> map = BeanUtil.beanToMap(dict);
            results.add(map);
        }
 
        return results;
    }
 
    private Serializable getKey(DictParam param) {
        return param.getDictId();
    }
 
    private Page getPageContext() {
        return LayuiPageFactory.defaultPage();
    }
 
    private RestDict getOldEntity(DictParam param) {
        return this.getById(getKey(param));
    }
 
    private RestDict getEntity(DictParam param) {
        RestDict entity = new RestDict();
        ToolUtil.copyProperties(param, entity);
        return entity;
    }
 
    private List<Long> getSubIds(Long dictId) {
 
        ArrayList<Long> longs = new ArrayList<>();
 
        if (ToolUtil.isEmpty(dictId)) {
            return longs;
        } else {
            List<RestDict> list = this.baseMapper.likeParentIds(dictId);
            for (RestDict dict : list) {
                longs.add(dict.getDictId());
            }
            return longs;
        }
    }
 
    private void dictSetPids(RestDict param) {
        if (param.getParentId().equals(0L)) {
            param.setParentIds("[0]");
        } else {
            //获取父级的pids
            Long parentId = param.getParentId();
            RestDict parent = this.getById(parentId);
            if (parent == null) {
                param.setParentIds("[0]");
            } else {
                param.setParentIds(parent.getParentIds() + "," + "[" + parentId + "]");
            }
        }
    }
 
}