cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
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
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
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
package cn.ksource.web.controller.business.pages.xtpz.sjzd.address;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
 
import javax.servlet.http.HttpServletRequest;
 
import org.apache.commons.collections.map.HashedMap;
import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import cn.ksource.beans.CONFIG_DATA_DICTIONARY_AREA;
import cn.ksource.core.dao.BaseDao;
import cn.ksource.core.dao.SqlParameter;
import cn.ksource.core.page.PageInfo;
import cn.ksource.core.util.ConvertUtil;
import cn.ksource.core.util.JsonUtil;
import cn.ksource.core.util.StringUtil;
import cn.ksource.core.web.TreeNode;
import cn.ksource.web.service.DataDictionaryService;
 
@Service("addressFacade")
public class AddressFacadeImpl implements AddressFacade {
    
    @Autowired
    private BaseDao baseDao;
    
    @Autowired
    private DataDictionaryService dataDictionaryService;
    
    /**
     * 根据ID查询地址信息
     * 返回map
     */
    @Override
    public Map getAddressById(String id) {
        String sql="SELECT * FROM CONFIG_DATA_DICTIONARY_AREA WHERE Id=:id";
        Map map = baseDao.queryForMap(sql, new SqlParameter().addValue("id", id));
        return map;
    }
    
    /**
     * 根据名称查询地址信息
     * 返回map
     */
    @Override
    public Map getAddressByName(String address_name) {
        String addressName = StringUtil.decode_utf(address_name);
        String sql="SELECT * FROM CONFIG_DATA_DICTIONARY_AREA WHERE ADDRESS_NAME=:address_name";
        Map map = baseDao.queryForMap(sql, new SqlParameter().addValue("address_name", addressName));
        return map;
    }
 
    /**
     * 查询所有地址信息
     * 返回list
     */
    @Override
    public List getAddressList() {
        String sql = "SELECT * FROM CONFIG_DATA_DICTIONARY_AREA ORDER BY ADDRESS_SN ASC";
        List list= baseDao.queryForList(sql);
        return list;
    }
    
    /**
     * 根据上级ID查询下级所有地址信息
     * 返回list
     */
    @Override
    public PageInfo getAddressList(PageInfo pageInfo,String up_id) {
        String sql = "SELECT * FROM CONFIG_DATA_DICTIONARY_AREA WHERE 1=1" ;
        if (StringUtils.isNotBlank(up_id) && !up_id.toString().equalsIgnoreCase("0")) {
            sql += " AND UP_ID=:up_id ";
        } else {
            sql += " AND UP_ID IS NULL ";
        }
        
        sql += " ORDER BY ADDRESS_SN ASC ";
        Map paramMap = new HashedMap();
        paramMap.put("up_id", up_id);
        PageInfo list = baseDao.queryforSplitPageInfo(pageInfo, sql, paramMap);
        return list;
    }
    
    @Override
    public int getAddressCount(String up_id) {
        String sql = "SELECT COUNT(ID) FROM CONFIG_DATA_DICTIONARY_AREA WHERE 1=1" ;
        if (StringUtils.isNotBlank(up_id) && !up_id.toString().equalsIgnoreCase("0")) {
            sql += " AND UP_ID=:up_id ";
        } else {
            sql += " AND UP_ID IS NULL ";
        }
        
        Map paramMap = new HashedMap();
        paramMap.put("up_id", up_id);
        int count = baseDao.queryForInteger(sql,paramMap);
        return count;
    }
 
 
    /**
     * 保存地址信息
     * 返回integer
     */
    @Override
    public Integer saveAddress(CONFIG_DATA_DICTIONARY_AREA address) {
        address.insertOrUpdate();
        dataDictionaryService.updateAreaListByParentID(address.getUp_id());
        dataDictionaryService.updateAreaById(address.getId());
        return 0;
    }
 
    /**
     * 获取地址树形菜单
     * 返回TreeNode
     */
    @Override
    public TreeNode getAddressTree(String id) {
        TreeNode root = new TreeNode("0","地址字典");
        String sql = "select * from CONFIG_DATA_DICTIONARY_AREA where ADDRESS_STATUS=1 ";
        if (StringUtils.isNotBlank(id)) {
            sql += " and up_id = :id ";
        } else {
            sql += " and level=1 ";
        }
        sql += " order by ADDRESS_SN asc ";
        List<Map> addressList = baseDao.queryForList(sql, new SqlParameter("id",id));
        for (Map map : addressList) {
            TreeNode tree = new TreeNode(map.get("ID").toString(),map.get("ADDRESS_NAME").toString());
            tree.setIsOpen(false);
            root.addChild(tree);
            continue;
        }
        return root;
    }
 
    /**
     * 根据ID删除地址信息
     * 无返回值
     */
    @Override
    public void delAddress(String id) {
        CONFIG_DATA_DICTIONARY_AREA area = new CONFIG_DATA_DICTIONARY_AREA(id).getInstanceById();
        
        dataDictionaryService.updateAreaListByParentID(area.getUp_id());
        dataDictionaryService.updateAreaById(area.getId());
        area.deleteById();
        
    }
    
    /**
     * 根据名称验证是否存在重名
     * 返回String
     */
    @Override
    public String check(String id,String address_name) {
        String addressName = StringUtil.decode_utf(address_name);
        String sql="SELECT * FROM CONFIG_DATA_DICTIONARY_AREA WHERE ADDRESS_NAME=:address_name";
        Map addressMap = baseDao.queryForMap(sql, new SqlParameter().addValue("address_name", addressName));
        Object addressId = addressMap.get("ID");
        if(addressId == null){
            return "1";
        } else if(!(addressId == null)&&addressId.equals(id)) {
            return "1";
        } else {
            return "2";
        }
    }
    
    /**
     * 分页获取地址信息地址信息
     * 返回map
     */
    public Map getAddressListForPagination(HttpServletRequest request){
        String up_id = request.getParameter("up_id");
        int pageindex = ConvertUtil.obj2Integer(request.getParameter("page")); //当前页码
        int pagesize = ConvertUtil.obj2Integer(request.getParameter("rows")); //每页展示数量
        int begin = (pageindex-1)* pagesize ;
        int end = (pageindex-1)* pagesize + pagesize;
        int infoCount = getAddressCount(up_id);//获取总条数
        String sql = "SELECT * FROM CONFIG_DATA_DICTIONARY_AREA WHERE 1=1" ;
        if (StringUtils.isNotBlank(up_id) && !up_id.toString().equalsIgnoreCase("0")) {
            sql += " AND UP_ID=:up_id ";
        } else {
            sql += " AND UP_ID IS NULL ";
        }
        sql += " ORDER BY ADDRESS_SN ASC LIMIT :begin,:end";
        Map paramMap = new HashedMap();
        paramMap.put("up_id", up_id);
        paramMap.put("begin", begin);
        paramMap.put("end", end);
        List<Map> list = baseDao.queryForList(sql,paramMap);
        Map rootMap = new HashMap();
        rootMap.put("total", infoCount); //信息总数
        rootMap.put("rows", list);
        return rootMap;
    }
 
    @Override
    public List<Map> addressData(HttpServletRequest request) {
        // TODO Auto-generated method stub
        return null;
    }
 
    @Override
    public List<Map> queryAddressYjList(HttpServletRequest request) {
        
        Map paramMap = new HashMap();
        
        StringBuilder builder = new StringBuilder("SELECT * FROM CONFIG_DATA_DICTIONARY_AREA WHERE  ADDRESS_STATUS=1 ORDER BY UP_ID,ADDRESS_SN ASC");
        
        List<Map> trees = baseDao.queryForList(builder.toString(),paramMap);
        
 
        List<Map> resultList = new LinkedList<Map>();
        
        Map<String, Map> yjgnCache = new HashMap<String, Map>();
        
        for (Map map : trees) {
            
            String treeId = ConvertUtil.obj2StrBlank(map.get("ID"));
            String parentId = ConvertUtil.obj2StrBlank(map.get("UP_ID"));
            
            //一级树
            if (!StringUtil.notEmpty(parentId)) {
                yjgnCache.put(treeId, map);
                List<Map> ejgnList = new LinkedList<Map>();
                map.put("ejTree", ejgnList);
                resultList.add(map);
                continue;
            }
            //二级树
            String pId = map.get("UP_ID").toString();
            if(yjgnCache.containsKey(pId)) {
                Map yjgnMap = yjgnCache.get(pId);
                List<Map> list = (List<Map>)yjgnMap.get("ejTree");
                map.put("sjTree", new LinkedList<Map>());
                list.add(map);
            }
        }
        
        System.out.println(JsonUtil.list2Json(resultList));
        return resultList;
    }
 
    @Override
    public List getAreaTree(String areaId) {
        String proviceId = new String();
        String cityId = new String();
        String townId = new String();
        if(StringUtil.notEmpty(areaId) && areaId.split("-").length==3) {
            String[] address = areaId.split("-");
            proviceId = address[0];
            cityId = address[1];
            townId = address[2];
        }
        String selectSql = "SELECT A.* FROM CONFIG_DATA_DICTIONARY_AREA A WHERE A.ADDRESS_STATUS = 1 ORDER BY A.LEVEL,A.ADDRESS_SN ";
        
        List<Map> categoryList = baseDao.queryForList(selectSql);
        
        Map result = new HashMap();
        
        List<Map> resultList = new LinkedList<Map>();
        
        Map<String, Map> yjgnCache = new HashMap<String, Map>();
        Map<String, Map> ejgnCache = new HashMap<String, Map>();
        Map<String, Map> sjgnCache = new HashMap<String, Map>();
        
        for (Map map : categoryList) {
            
            //一级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("1")) {
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                yjgnCache.put(id, map);
                List<Map> ejgnList = new LinkedList<Map>();
                map.put("ejTree", ejgnList);
                
                if(proviceId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                resultList.add(map);
                continue;
            }
            //二级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("2")) {
                Map yjgnMap = yjgnCache.get(map.get("UP_ID").toString());
                List<Map> list = (List<Map>)yjgnMap.get("ejTree");
                map.put("sjTree", new LinkedList<Map>());
                list.add(map);
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                
                if(cityId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                ejgnCache.put(id, map);
                continue;
            }
            //三级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("3")) {
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                if(townId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                if(null!=map.get("UP_ID")){
                    String upId = map.get("UP_ID").toString();
                    if(ejgnCache.containsKey(upId)) {
                        Map ejgnMap = ejgnCache.get(upId);
                        List<Map> list = (List<Map>)ejgnMap.get("sjTree");
                        list.add(map);
                    }
                }
            }
        }
        return resultList;
    }
 
    @Override
    public List getProtypeTree(String typeId,String gysId, String goodsTypeId) {
        String proviceId = new String();
        String cityId = new String();
        String townId = new String();
        if(StringUtil.notEmpty(typeId) && typeId.split("-").length==3) {
            String[] address = typeId.split("-");
            proviceId = address[0];
            cityId = address[1];
            townId = address[2];
        }
        String selectSql = "SELECT  C.TYPE,A.* FROM YSY_GYS_GOODS_CATE A,YSY_GOODS_CATEGORY C  WHERE A.CATE_ID = C.ID AND A.STATE = 2 AND A.GYS_ID=:gysId  ";
        if(StringUtil.isNotBlank(goodsTypeId)){
            selectSql = selectSql + " AND C.TYPE=:goodsTypeId  ";
                    
        }
        selectSql = selectSql + " ORDER BY A.LV  ";
        List<Map> categoryList = baseDao.queryForList(selectSql,new SqlParameter().put("gysId", gysId).put("goodsTypeId", goodsTypeId));
        
        Map result = new HashMap();
        
        List<Map> resultList = new LinkedList<Map>();
        
        Map<String, Map> yjgnCache = new HashMap<String, Map>();
        Map<String, Map> ejgnCache = new HashMap<String, Map>();
        Map<String, Map> sjgnCache = new HashMap<String, Map>();
        
        for (Map map : categoryList) {
            
            //一级树
            if (map.get("LV").toString().equalsIgnoreCase("1")) {
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                yjgnCache.put(id, map);
                List<Map> ejgnList = new LinkedList<Map>();
                map.put("ejTree", ejgnList);
                
                if(proviceId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                resultList.add(map);
                continue;
            }
            //二级树
            if (map.get("LV").toString().equalsIgnoreCase("2")) {
                Map yjgnMap = yjgnCache.get(map.get("PID").toString());
                List<Map> list = (List<Map>)yjgnMap.get("ejTree");
                map.put("sjTree", new LinkedList<Map>());
                list.add(map);
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                
                if(cityId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                ejgnCache.put(id, map);
                continue;
            }
            //三级树
            if (map.get("LV").toString().equalsIgnoreCase("3")) {
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                if(townId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                if(null!=map.get("PID")){
                    String upId = map.get("PID").toString();
                    if(ejgnCache.containsKey(upId)) {
                        Map ejgnMap = ejgnCache.get(upId);
                        List<Map> list = (List<Map>)ejgnMap.get("sjTree");
                        list.add(map);
                    }
                }
            }
        }
        return resultList;
    }
 
    @Override
    public List getProtypeTree_PT(String typeId,String goodsTypeId) {
        String proviceId = new String();
        String cityId = new String();
        String townId = new String();
        if(StringUtil.notEmpty(typeId) && typeId.split("-").length==3) {
            String[] address = typeId.split("-");
            proviceId = address[0];
            cityId = address[1];
            townId = address[2];
        }
        String selectSql = "SELECT A.ID,LV1_NAME AS CATE_NAME,A.LEVEL,A.UP_ID FROM YSY_GOODS_CATEGORY A WHERE A.STATE = 1 AND A.LEVEL=1";
        if(StringUtil.isNotBlank(goodsTypeId)){
            selectSql = selectSql + " AND A.TYPE=:goodsTypeId  ";
                    
        }
        List<Map> categoryList=new ArrayList<Map>();
        
        List<Map> categoryList1 = baseDao.queryForList(selectSql,new SqlParameter().put("goodsTypeId", goodsTypeId));
        selectSql = "SELECT A.ID,LV2_NAME CATE_NAME ,A.LEVEL,A.UP_ID FROM YSY_GOODS_CATEGORY A WHERE A.STATE = 1 AND A.LEVEL=2";
        if(StringUtil.isNotBlank(goodsTypeId)){
            selectSql = selectSql + " AND A.TYPE=:goodsTypeId  ";
                    
        }
        List<Map> categoryList2 = baseDao.queryForList(selectSql,new SqlParameter().put("goodsTypeId", goodsTypeId));
        selectSql = "SELECT A.ID,LV3_NAME CATE_NAME ,A.LEVEL,A.UP_ID FROM YSY_GOODS_CATEGORY A WHERE A.STATE = 1 AND A.LEVEL=3";
        if(StringUtil.isNotBlank(goodsTypeId)){
            selectSql = selectSql + " AND A.TYPE=:goodsTypeId  ";
                    
        }
        List<Map> categoryList3 = baseDao.queryForList(selectSql,new SqlParameter().put("goodsTypeId", goodsTypeId));
        categoryList.addAll(categoryList1);
        categoryList.addAll(categoryList2);
        categoryList.addAll(categoryList3);
        Map result = new HashMap();
        
        List<Map> resultList = new LinkedList<Map>();
        
        Map<String, Map> yjgnCache = new HashMap<String, Map>();
        Map<String, Map> ejgnCache = new HashMap<String, Map>();
        Map<String, Map> sjgnCache = new HashMap<String, Map>();
        
        for (Map map : categoryList) {
            
            //一级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("1")) {
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                yjgnCache.put(id, map);
                List<Map> ejgnList = new LinkedList<Map>();
                map.put("ejTree", ejgnList);
                
                if(proviceId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                resultList.add(map);
                continue;
            }
            //二级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("2")) {
                Map yjgnMap = yjgnCache.get(map.get("UP_ID").toString());
                List<Map> list = (List<Map>)yjgnMap.get("ejTree");
                map.put("sjTree", new LinkedList<Map>());
                list.add(map);
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                
                if(cityId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                ejgnCache.put(id, map);
                continue;
            }
            //三级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("3")) {
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                if(townId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                if(null!=map.get("UP_ID")){
                    String upId = map.get("UP_ID").toString();
                    if(ejgnCache.containsKey(upId)) {
                        Map ejgnMap = ejgnCache.get(upId);
                        List<Map> list = (List<Map>)ejgnMap.get("sjTree");
                        list.add(map);
                    }
                }
            }
        }
        return resultList;
    }
    @Override
    public List getZskTree(Map<String, String> params) {
        // TODO Auto-generated method stub
        String type=params.get("type");
        String address=params.get("treeId");
        String yjId = new String();
        String ejId = new String();
        String sjId = new String();
        if(StringUtil.notEmpty(address) && address.split("-").length==3) {
            String[] address1 = address.split("-");
            yjId = address1[0];
            ejId = address1[1];
            sjId = address1[2];
        }
        String sql = "SELECT * FROM YSY_PT_KNOWLEDGE_CATEGORY WHERE STATE=1";
        if(StringUtil.notEmpty(type)){
            sql+=" AND TYPE=:type";
        }
        sql+=" ORDER BY LEVEL,ORDER_NUM";
        List<Map> categoryList = baseDao.queryForList(sql,params);
        
        Map result = new HashMap();
        
        List<Map> resultList = new LinkedList<Map>();
        
        Map<String, Map> yjgnCache = new HashMap<String, Map>();
        Map<String, Map> ejgnCache = new HashMap<String, Map>();
        Map<String, Map> sjgnCache = new HashMap<String, Map>();
        for (Map map : categoryList) {
            //一级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("1")) {
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                yjgnCache.put(id, map);
                List<Map> ejgnList = new LinkedList<Map>();
                map.put("ejTree", ejgnList);
                
                if(yjId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                resultList.add(map);
                continue;
            }
            //二级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("2")) {
                Map yjgnMap = yjgnCache.get(map.get("P_ID").toString());
                List<Map> list = (List<Map>)yjgnMap.get("ejTree");
                map.put("sjTree", new LinkedList<Map>());
                list.add(map);
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                
                if(ejId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                ejgnCache.put(id, map);
                continue;
            }
            //三级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("3")) {
                
                String id = ConvertUtil.obj2StrBlank(map.get("ID").toString());
                if(sjId.equals(id)) {
                    map.put("check", 1);
                } else {
                    map.put("check", 2);
                }
                
                if(null!=map.get("P_ID")){
                    String upId = map.get("P_ID").toString();
                    if(ejgnCache.containsKey(upId)) {
                        Map ejgnMap = ejgnCache.get(upId);
                        List<Map> list = (List<Map>)ejgnMap.get("sjTree");
                        list.add(map);
                    }
                }
            }
        }
        return resultList;
    }
 
}