cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
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
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
package cn.ksource.web.facade.servicelist;
 
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.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
 
import cn.ksource.beans.SC_PARTNER_CUSTOMER_INFO;
import cn.ksource.beans.SC_SERVCE_CATEGORY;
import cn.ksource.beans.SC_SLA;
import cn.ksource.beans.SC_SLA_CONFIG;
import cn.ksource.beans.SC_WORKFLOW_CHANGE;
import cn.ksource.beans.SC_WORKFLOW_INCIDENT;
import cn.ksource.beans.SC_WORKFLOW_INCIDENT_TEMPLATE;
import cn.ksource.beans.SC_WORKFLOW_QUESTION;
import cn.ksource.core.dao.BaseDao;
import cn.ksource.core.dao.SqlParameter;
import cn.ksource.core.page.PageInfo;
import cn.ksource.core.util.AjaxUtil;
import cn.ksource.core.util.ConvertUtil;
import cn.ksource.core.util.FileUtil;
import cn.ksource.core.util.JsonUtil;
import cn.ksource.core.util.MyFileUploadException;
import cn.ksource.core.util.StringUtil;
import cn.ksource.core.web.WebUtil;
import cn.ksource.web.Constants;
import cn.ksource.web.service.DataDictionaryService;
import cn.ksource.web.service.sl.sla.SLALevel;
 
@Service("slaPartnerFacade")
@SuppressWarnings("unchecked")
public class SlaPartnerFacadeImpl implements SlaPartnerFacade {
    
    @Autowired
    private BaseDao baseDao;
    
    @Autowired
    private DataDictionaryService dataDictionaryService;
 
    @Override
    public List<Map> checkForTitle(String sjbh, String category_name) {
        String sql = "select * from SC_SERVCE_CATEGORY  WHERE  CATEGORY_NAME=:category_name ";
        if(StringUtil.isBlank(sjbh)||"0".equals(sjbh)){
            //sql = sql + " AND( P_ID is null OR P_ID = 0 OR P_ID = '' )";
            sql = sql + " AND P_ID is null ";
        }else{
            sql = sql + " AND P_ID=:sjbh ";
        }
        return baseDao.queryForList(sql,new SqlParameter("sjbh",sjbh).addValue("category_name", category_name));
    }
 
    @Override
    public boolean checkcode(HttpServletRequest request) {
        String id = request.getParameter("id");
        String categoryCode = request.getParameter("category_code");
        String pId = request.getParameter("pId");
        String selectSql = "SELECT COUNT(ID) FROM SC_SERVCE_CATEGORY WHERE CATEGORY_CODE = :categoryCode ";
        if(StringUtil.notEmpty(pId)) {
            selectSql += " AND P_ID = :pId ";
        } else {
            selectSql += " AND P_ID IS NULL ";
        }
        Map paramMap = new HashMap();
        paramMap.put("categoryCode", categoryCode);
        paramMap.put("pId", pId);
        if(StringUtil.notEmpty(id)) {
            selectSql += " AND ID != :id";
            paramMap.put("id", id);
        }
        int count = baseDao.queryForInteger(selectSql,paramMap);
        if(count > 0) {
            return false;
        }
        return true;
    }
 
    @Override
    public List<Map> partnerServiceCateTree(HttpServletRequest request) {
        Map paramMap = new HashMap();
        String selectSubSql = "SELECT * FROM SC_SERVCE_CATEGORY WHERE STATE = 1  ORDER BY LEVEL,SERIAL,CATEGORY_NAME ";
        List<Map> cates = baseDao.queryForList(selectSubSql,paramMap);
        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 : cates) {
            
            //一级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("1")) {
                yjgnCache.put(map.get("ID").toString(), map);
                List<Map> ejgnList = new LinkedList<Map>();
                map.put("ejTree", ejgnList);
                resultList.add(map);
                continue;
            }
            //二级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("2")) {
                String pId = map.get("P_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);
                    
                    ejgnCache.put(map.get("ID").toString(), map);
                }
                continue;
            }
            //三级树
            if (map.get("LEVEL").toString().equalsIgnoreCase("3")) {
                if(null!=map.get("P_ID")){
                    String pId = map.get("P_ID").toString();
                    if(ejgnCache.containsKey(pId)) {
                        Map ejgnMap = ejgnCache.get(map.get("P_ID").toString());
                        List<Map> list = (List<Map>)ejgnMap.get("sjTree");
                        list.add(map);
                    }
                }
            }
        }
        System.out.println(JsonUtil.list2Json(resultList));
        return resultList;
    }
 
    @Override
    public int partnerServiceCount(HttpServletRequest request) {
        String pId = request.getParameter("pId");
        StringBuilder builder = new StringBuilder("SELECT COUNT(ID) FROM SC_SERVCE_CATEGORY WHERE 1=1 ");
        Map paramMap = new HashMap();
        if(StringUtil.notEmpty(pId)) {
            builder.append(" AND P_ID = :pId ");
            paramMap.put("pId", pId);
        } else {
            builder.append(" AND P_ID IS NULL ");
        }
        
        return baseDao.queryForInteger(builder.toString(),paramMap);
    }
 
    @Override
    public PageInfo partnerServiceData(HttpServletRequest request,PageInfo pageInfo) {
        String pId = request.getParameter("pId");
        StringBuilder builder = new StringBuilder("SELECT * FROM SC_SERVCE_CATEGORY WHERE 1=1 ");
        Map paramMap = new HashMap();
        if(StringUtil.notEmpty(pId)) {
            builder.append(" AND P_ID = :pId ");
            paramMap.put("pId", pId);
        } else {
            builder.append(" AND P_ID IS NULL ");
        }
        
        
        builder.append(" ORDER BY SERIAL ");
        
        return baseDao.queryforSplitPageInfo(pageInfo, builder.toString(), paramMap);
    }
 
    @Override
    public Map queryForMapById(String id) {
        SC_SERVCE_CATEGORY service_category = new SC_SERVCE_CATEGORY();
        Map service_categoryMap = service_category.setId(id).getBeanMapById();
        return service_categoryMap;
    }
 
    @Override
    public Map save(HttpServletRequest request) {
        Map result = new HashMap();
        String firstCate = "";
        String secondCate = "";
        String id = request.getParameter("id");
        String categoryid = request.getParameter("categoryid");
        
        String category_name = request.getParameter("category_name");
        String category_code = request.getParameter("category_code");
        String serial = request.getParameter("serial");
        String note = request.getParameter("note"); 
        
        String photoPath = new String();
            String[] allowType =  new String[]{"gif","jpg","jpeg","png"};
            try {
                photoPath = FileUtil.uploadFile4SpringMVC(request, "photopathurl", "/upload", allowType);
            } catch (MyFileUploadException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        
        SC_SERVCE_CATEGORY service_category = new SC_SERVCE_CATEGORY();
        if(StringUtil.notEmpty(categoryid)){
            SC_SERVCE_CATEGORY pCate = new SC_SERVCE_CATEGORY(categoryid).getInstanceById();
            int level = ConvertUtil.obj2Integer(pCate.getLevel());
            service_category.setP_id(categoryid);
            service_category.setLevel(level+1);
            
            if(level==2) {
                firstCate = pCate.getP_id();
                secondCate = pCate.getId();
            } else {
                firstCate = pCate.getId();
            }
            
        } else {
            service_category.setP_id(null);
            service_category.setLevel(1);
        }
            
            
        if(StringUtils.isBlank(id)){
            
            service_category.setCategory_name(category_name).setCategory_code(category_code)
            .setSerial(ConvertUtil.obj2Integer(serial))
            .setNote(note);
             
            
             service_category
            .setPhotopath(photoPath)
            .setState(1)
            .setType(2)
            .insert();
        }else{
            if(null == photoPath||"".equals(photoPath)){
                photoPath = request.getParameter("photopath");
                
            }
            new SC_SERVCE_CATEGORY(id)
            .setCategory_name(category_name)
            .setCategory_code(category_code)
            .setSerial(ConvertUtil.obj2Integer(serial))
            .setNote(note)
            .setPhotopath(photoPath).update();
            SC_SERVCE_CATEGORY sc=new SC_SERVCE_CATEGORY(id).getInstanceById();
            Map param=new HashMap();
            param.put("name", sc.getCategory_name());
            param.put("id", id);
            if("1".equals(ConvertUtil.obj2StrBlank(sc.getLevel()))){
                String sqla="update SC_WORKFLOW_INCIDENT_TEMPLATE set FIRST_CATEGORY_NAME=:name  where FIRST_CATEGORY_ID=:id";
                String sqlb="update SC_WORKFLOW_INCIDENT set FIRST_CATEGORY_NAME=:name  where FIRST_CATEGORY_ID=:id";
                String sqlc="update SC_WORKFLOW_QUESTION set FIRST_CATEGORY_NAME=:name  where FIRST_CATEGORY_ID=:id";
                baseDao.execute(sqla, param);
                baseDao.execute(sqlb, param);
                baseDao.execute(sqlc, param);
            }else if("2".equals(ConvertUtil.obj2StrBlank(sc.getLevel()))){
                String sqla="update SC_WORKFLOW_INCIDENT_TEMPLATE set SECOND_CATEGORY_NAME=:name  where SECOND_CATEGORY_ID=:id";
                String sqlb="update SC_WORKFLOW_INCIDENT set SECOND_CATEGORY_NAME=:name  where SECOND_CATEGORY_ID=:id";
                String sqlc="update SC_WORKFLOW_QUESTION set SECOND_CATEGORY_NAME=:name  where SECOND_CATEGORY_ID=:id";
                baseDao.execute(sqla, param);
                baseDao.execute(sqlb, param);
                baseDao.execute(sqlc, param);
            }else if("3".equals(ConvertUtil.obj2StrBlank(sc.getLevel()))){
                String sqla="update SC_WORKFLOW_INCIDENT_TEMPLATE set THIRD_CATEGORY_NAME=:name  where THIRD_CATEGORY_ID=:id";
                String sqlb="update SC_WORKFLOW_INCIDENT set THIRD_CATEGORY_NAME=:name  where THIRD_CATEGORY_ID=:id";
                String sqlc="update SC_WORKFLOW_QUESTION set THIRD_CATEGORY_NAME=:name  where THIRD_CATEGORY_ID=:id";
                baseDao.execute(sqla, param);
                baseDao.execute(sqlb, param);
                baseDao.execute(sqlc, param);
            }
        }
        
        
        
        result.put("firstCate", firstCate);
        result.put("secondCate", secondCate);
        return result;
    }
 
    @Override
    public Map updateFwmlState(HttpServletRequest request) {
        String result = "1";
        String id = request.getParameter("id");
        String state = request.getParameter("state");
        SC_SERVCE_CATEGORY category = new SC_SERVCE_CATEGORY(id).getInstanceById();
        String pId = category.getP_id();
        SC_SERVCE_CATEGORY pCate = null;
        if(state.equals("1")) {
            //执行启用操作,判断该分类的上级是否已经启用
            if(StringUtil.notEmpty(pId)) {
                pCate = new SC_SERVCE_CATEGORY(pId).getInstanceById();
                int pstate = pCate.getState();
                if(pstate == 2) {
                    result = "2";
                }else{
                    String updateSql = "UPDATE SC_SERVCE_CATEGORY SET STATE = :state WHERE ID = :id ";
                    baseDao.execute(updateSql, new SqlParameter("state",state).addValue("id", id));
                }
            }else{
                String updateSql = "UPDATE SC_SERVCE_CATEGORY SET STATE = :state WHERE ID = :id ";
                baseDao.execute(updateSql, new SqlParameter("state",state).addValue("id", id));
            }
        }else{
            //执行禁用操作,判断该服务目录下是否有启用服务目录
            String selectSql = "SELECT COUNT(ID) FROM SC_SERVCE_CATEGORY WHERE P_ID = :id AND STATE = 1 ";
            int count = baseDao.queryForInteger(selectSql,new SqlParameter("id",id));
            if(count>0) {
                result = "2";
            }else{
                String updateSql = "UPDATE SC_SERVCE_CATEGORY SET STATE = :state WHERE ID = :id ";
                baseDao.execute(updateSql, new SqlParameter("state",state).addValue("id", id));
            }
        }
        String firstCate = new String();
        String secondCate = new String();
        
        if(StringUtil.notEmpty(pId)) {
            if(null == pCate) {
                pCate = new SC_SERVCE_CATEGORY(pId).getInstanceById();
            }
            int level = pCate.getLevel();
            if(level==2) {
                firstCate = pCate.getP_id();
                secondCate = pCate.getId();
            } else {
                firstCate = pCate.getId();
            }
        }
        
        Map resultMap = new HashMap();
        resultMap.put("firstCate", firstCate);
        resultMap.put("secondCate", secondCate);
        resultMap.put("result", result);
        
        return resultMap;
    }
 
    @Override
    public int slacategoryListCount(HttpServletRequest request) {
        String level_name = AjaxUtil.decode(request.getParameter("level_name"));
        StringBuilder sql = new StringBuilder();
        sql.append("SELECT COUNT(ID) FROM SC_SLA A  WHERE A.STATE = 1 ");
        SqlParameter param = new SqlParameter();
        if (StringUtils.isNotBlank(level_name)) {
            sql.append(" AND A.LEVEL_NAME like :level_name ");
            param.addValue("level_name", "%"+level_name+"%");
        }
        return baseDao.queryForInteger(sql.toString(), param);
    }
 
    @Override
    public PageInfo slacategoryListData(HttpServletRequest request,PageInfo pageInfo) {
        String level_name = AjaxUtil.decode(request.getParameter("level_name"));
        StringBuilder sql = new StringBuilder();
        sql.append("SELECT A.*,B.RESPONSE_TIME,B.RESOLVE_TIME FROM SC_SLA A LEFT JOIN SC_SLA_CONFIG B ON A.ID = B.LEVEL_ID AND B.CUSTOMER_ID IS NULL AND B.CATEGORY_ID IS NULL WHERE A.STATE = 1 ");
        SqlParameter param = new SqlParameter();
        if (StringUtils.isNotBlank(level_name)) {
            sql.append(" AND A.LEVEL_NAME like :level_name ");
            param.addValue("level_name", "%"+level_name+"%");
        }
        sql.append(" ORDER BY A.SERIAL ");
        return baseDao.queryforSplitPageInfo(pageInfo,sql.toString(),param);
    }
 
    @Override
    public Map getCateSla(HttpServletRequest request) {
        String cateid = request.getParameter("id");
        String sql = "SELECT * FROM SC_SLA  WHERE ID = :id AND STATE = :state";
        Map param = new HashMap();
        param.put("id", cateid);
        param.put("state", 1);
        return baseDao.queryForMap(sql, param);
    }
 
    @Override
    public void saveSlacategory(HttpServletRequest request) {
        String id = request.getParameter("id");
        String level_name = request.getParameter("level_name");
        String serial = request.getParameter("serial");
        SC_SLA info = new SC_SLA();
        if(StringUtil.isEmpty(id)){
            info.setState(1);
        }else{
            info.setId(id);
        }
        info.setLevel_name(level_name).setSerial(ConvertUtil.obj2Integer(serial)).setType(2).insertOrUpdate();
    }
 
    @Override
    public int checkLevel_name(String id, String level_name) {
        StringBuffer sql = new StringBuffer("SELECT COUNT(ID) FROM SC_SLA WHERE STATE = 1 ");
        if(StringUtil.isEmpty(id)){
            sql.append(" AND LEVEL_NAME = :level_name");
        }else{
            sql.append(" AND LEVEL_NAME = :level_name AND ID <> :id ");
        }
        SqlParameter param = new SqlParameter();
        param.addValue("level_name", level_name);
        param.addValue("id",id);
        int count = baseDao.queryForInteger(sql.toString(),param );
        return count;
    }
 
    @Override
    public List queryPnLevels(HttpServletRequest request) {
        String sql = "SELECT * FROM SC_SLA WHERE STATE = :state ORDER BY SERIAL";
        return baseDao.queryForList(sql,new SqlParameter("state",Constants.SC_SLA_TEMPLATE_STATE_OPEN));
    }
 
    @Override
    public Map querySlapnLink(HttpServletRequest request) {
        Map resultMap = new HashMap();
        //查询紧急程度数据字典
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        if(null==eventPri || eventPri.size()==0) {
            return resultMap;
        }
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        if(null==eventDg || eventDg.size()==0) {
            return resultMap;
        }
        
        //查询所有的优先级设置
        String selectSql = "SELECT * FROM SC_SLA_LEVEL_CONFIG WHERE CUSTOMER_ID IS NULL ";
        List<Map> list = baseDao.queryForList(selectSql);
        Map cacheMap = new HashMap();
        
        
        if(null!=list && list.size()>0) {
            for(Map map : list) {
                String priId = ConvertUtil.obj2Str(map.get("PRIORITY_ID"));
                String effId = ConvertUtil.obj2Str(map.get("INFLUENCE_ID"));
                cacheMap.put(priId+"-"+effId, map);
            }
        }
        
        
        for(Map dg : eventDg) {
            List levels = new ArrayList();
            String effId = ConvertUtil.obj2Str(dg.get("DATAKEY"));
            for(Map pri : eventPri) {
                String priId = ConvertUtil.obj2Str(pri.get("DATAKEY"));
                String key = priId+"-"+effId;
                Map m = new HashMap();
                if(cacheMap.containsKey(key)) {
                    m = (Map)cacheMap.get(key);
                    m.put("unitkey", key);
                } else {
                    m.put("unitkey", key);
                }
                levels.add(m);
            }
            dg.put("levels", levels);
        }
        
        
        resultMap.put("pri", eventPri);
        resultMap.put("dg", eventDg);
        return resultMap;
    }
 
    @Override
    public String saveLink(HttpServletRequest request) {
        String[] links = request.getParameterValues("level");
        
        Map<String,String> priMap = new HashMap<String,String>();
        //查询紧急程度数据字典
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        for(Map m : eventPri) {
            String key = ConvertUtil.obj2StrBlank(m.get("DATAKEY"));
            String value = ConvertUtil.obj2StrBlank(m.get("DATAVALUE"));
            priMap.put(key, value);
        }
        
        Map<String,String> dgMap = new HashMap<String,String>();
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        for(Map m : eventDg) {
            String key = ConvertUtil.obj2StrBlank(m.get("DATAKEY"));
            String value = ConvertUtil.obj2StrBlank(m.get("DATAVALUE"));
            dgMap.put(key, value);
        }
        
        Map<String,String> levelMap = new HashMap<String,String>();
        //查询所有的优先级设置
        List<Map> levels = queryPnLevels(request);
        for(Map m : levels) {
            String key = ConvertUtil.obj2StrBlank(m.get("ID"));
            String value = ConvertUtil.obj2StrBlank(m.get("LEVEL_NAME"));
            levelMap.put(key, value);
        }
        
        List<SqlParameter> paramList = new ArrayList<SqlParameter>();
        for(String s : links) {
            SqlParameter sqlParameter = new SqlParameter();
            String[] keys = s.split("-");
            String priId = keys[0];
            String dgId = keys[1];
            String levelId = keys[2];
            sqlParameter.put("id", StringUtil.getUUID());
            sqlParameter.put("influence_id", dgId);
            sqlParameter.put("influence_name", dgMap.get(dgId));
            sqlParameter.put("priority_id", priId);
            sqlParameter.put("priority_name", priMap.get(priId));
            sqlParameter.put("level_id", levelId);
            sqlParameter.put("level_name", levelMap.get(levelId));
            paramList.add(sqlParameter);
        }
        
        String deleteSql = "DELETE FROM SC_SLA_LEVEL_CONFIG WHERE CUSTOMER_ID IS NULL ";
        String insertSql = "INSERT INTO SC_SLA_LEVEL_CONFIG(ID,INFLUENCE_ID,INFLUENCE_NAME,PRIORITY_ID,PRIORITY_NAME,LEVEL_ID,LEVEL_NAME,TYPE) VALUES (:id,:influence_id,:influence_name,:priority_id,:priority_name,:level_id,:level_name,2)";
        baseDao.execute(deleteSql, new SqlParameter());
        baseDao.executeBatch(insertSql, paramList);
        return "1";
    }
 
    @Override
    public void saveSlaTab(HttpServletRequest request) {
        String levelid = request.getParameter("levelid");
        String id = request.getParameter("id");
        String isSelf = request.getParameter("isSelf");
        
        String levelName = ConvertUtil.obj2Str(new SC_SLA(levelid).getBeanMapById().get("LEVEL_NAME"));
        String cateId = request.getParameter("cateId");
        SC_SERVCE_CATEGORY cate = new SC_SERVCE_CATEGORY(cateId).getInstanceById();
        String cateName = ConvertUtil.obj2Str(cate.getCategory_name());
        String response_time = request.getParameter("response_time");
        String resolve_time = request.getParameter("resolve_time");
        
        
        String user1 = request.getParameter("user1");
        String userName1 = request.getParameter("userName1");
        
        SC_SLA_CONFIG config = new SC_SLA_CONFIG();
        config.setCategory_id(cateId).setCategory_name(cateName).setLevel_id(levelid).setLevel_name(levelName)
        .setResolve_time(ConvertUtil.obj2Integer(resolve_time))
        .setResponse_time(ConvertUtil.obj2Integer(response_time))
        .setDealer_type(2).setGroup_id("").setGroup_name("").setUser_id(user1).setUser_name(userName1);
        if("1".equals(isSelf)){
            config.setId(id).update();
        }else{
            config.setState(1).setType(2).insert();
        }
        
        String configId = config.getId();
        
        baseDao.execute("DELETE FROM SC_SLA_USER WHERE LEVEL_ID = :level_id", new SqlParameter("level_id",config.getId()));
        
        
        List<SqlParameter> paramList = new ArrayList<SqlParameter>();
        for(int i=2; i<=7; i++) {
            
            String time = request.getParameter("time"+i);
                String user = request.getParameter("user"+i);
                String userName = request.getParameter("userName"+i);
                SqlParameter param = new SqlParameter();
                param.put("id", StringUtil.getUUID());
                param.put("level_id",configId );
                if(i>4) {
                    param.put("notice_type", Constants.SC_SLA_USER_NOTICE_TYPE_RESOLVE_OVERTIME);
                } else {
                    param.put("notice_type", Constants.SC_SLA_USER_NOTICE_TYPE_ANSWER_OVERTIME);
                }
                if(StringUtil.notEmpty(time)) {
                    param.put("over_time", time);
                }else{
                    param.put("over_time", null);
                }
                
                param.put("user_id", user);
                param.put("user_name", userName);
                param.put("type", "2");
                param.put("dealer_type", "2");
                param.put("group_id", "");
                param.put("group_name", "");
                paramList.add(param);
        }
        
        if(paramList.size()>0) {
            String sql = "INSERT INTO SC_SLA_USER(ID,LEVEL_ID,NOTICE_TYPE,OVER_TIME,USER_ID,USER_NAME,TYPE,DEALER_TYPE,GROUP_ID,GROUP_NAME) VALUES(:id,:level_id,:notice_type,:over_time,:user_id,:user_name,:type,:dealer_type,:group_id,:group_name)";
            baseDao.executeBatch(sql, paramList);
        }
        
        //二级等级协议修改,对应三级等级协议清空
        if(cate.getLevel() == 2){
            String catesql = "SELECT * FROM SC_SERVCE_CATEGORY WHERE P_ID = :p_id ";
            List<Map> cateList = baseDao.queryForList(catesql, new SqlParameter("p_id",cate.getId()));
            List<SqlParameter> paramsList = new ArrayList<SqlParameter>();
            for(Map map:cateList){
                SqlParameter param = new SqlParameter();
                param.put("category_id", map.get("ID"));
                param.put("level_id", levelid);
                paramsList.add(param);
            }
            String del = "DELETE FROM SC_SLA_USER WHERE LEVEL_ID = (SELECT ID FROM SC_SLA_CONFIG WHERE CATEGORY_ID = :category_id AND CUSTOMER_ID IS NULL AND LEVEL_ID = :level_id )";
            String delcfg = "DELETE FROM SC_SLA_CONFIG WHERE CATEGORY_ID = :category_id AND CUSTOMER_ID IS NULL AND LEVEL_ID = :level_id ";
            baseDao.executeBatch(del, paramsList);
            baseDao.executeBatch(delcfg, paramsList);
        }
        
    }
 
    @Override
    public Map getSlaList(HttpServletRequest request) {
        String cateid = request.getParameter("cateId");
        String levelid = request.getParameter("levelid");
        String sql = "SELECT * FROM SC_SLA_CONFIG  WHERE CATEGORY_ID = :category_id AND LEVEL_ID = :level_id AND STATE = :state";
        Map param = new HashMap();
        param.put("category_id", cateid);
        param.put("level_id", levelid);
        param.put("state", 1);
        Map slaMap = baseDao.queryForMap(sql, param);
        
        
        String userId = ConvertUtil.obj2StrBlank(slaMap.get("USER_ID"));
        List users = new ArrayList();
        if(StringUtil.notEmpty(userId)) {
            String[] ids = userId.split(",");
            String userName = ConvertUtil.obj2StrBlank(slaMap.get("USER_NAME"));
            String[] names = userName.split(",");
            for(int i=0; i<ids.length; i++) {
                Map map = new HashMap();
                map.put("userId", ids[i]);
                map.put("userName", names[i]);
                users.add(map);
            }
        }
        
        slaMap.put("users", users);
        
        String configId = ConvertUtil.obj2StrBlank(slaMap.get("ID"));
        String sqluser = "SELECT A.* FROM SC_SLA_USER A WHERE  A.LEVEL_ID = :level_id ORDER BY A.OVER_TIME";
        List<Map> list = baseDao.queryForList(sqluser, new SqlParameter("level_id",configId));
        
        List<Map> userList = new ArrayList<Map>();
        List<Map> userjjList = new ArrayList<Map>();
        if(null!=list && list.size()>0) {
            for(Map map : list) {
                String noticeType = ConvertUtil.obj2StrBlank(map.get("NOTICE_TYPE"));
                if(noticeType.equals(Constants.SC_SLA_USER_NOTICE_TYPE_ANSWER_OVERTIME)) {
                    userList.add(map);
                } else {
                    userjjList.add(map);
                }
            }
        }
        
        
        Map xy1 = new HashMap();
        Map xy2 = new HashMap();
        Map xy3 = new HashMap();
        if(null!=userList && userList.size()>0) {
            if(userList.size()==1) {
                xy1 = userList.get(0);
            } else if (userList.size()==2) {
                xy1 = userList.get(0);
                xy2 = userList.get(1);
            } else if (userList.size()==3) {
                xy1 = userList.get(0);
                xy2 = userList.get(1);
                xy3 = userList.get(2);
            }
        }
        if(xy1.size()>0) {
            String uId = ConvertUtil.obj2StrBlank(xy1.get("USER_ID"));
            List us = new ArrayList();
            if(StringUtil.notEmpty(uId)) {
                String[] ids = uId.split(",");
                String userName = ConvertUtil.obj2StrBlank(xy1.get("USER_NAME"));
                String[] names = userName.split(",");
                for(int i=0; i<ids.length; i++) {
                    Map map = new HashMap();
                    map.put("userId", ids[i]);
                    map.put("userName", names[i]);
                    us.add(map);
                }
            }
            xy1.put("users", us);
        }
        
        if(xy2.size()>0) {
            String uId = ConvertUtil.obj2StrBlank(xy2.get("USER_ID"));
            List us = new ArrayList();
            if(StringUtil.notEmpty(uId)) {
                String[] ids = uId.split(",");
                String userName = ConvertUtil.obj2StrBlank(xy2.get("USER_NAME"));
                String[] names = userName.split(",");
                for(int i=0; i<ids.length; i++) {
                    Map map = new HashMap();
                    map.put("userId", ids[i]);
                    map.put("userName", names[i]);
                    us.add(map);
                }
            }
            xy2.put("users", us);
        }
        
        
        if(xy3.size()>0) {
            String uId = ConvertUtil.obj2StrBlank(xy3.get("USER_ID"));
            List us = new ArrayList();
            if(StringUtil.notEmpty(uId)) {
                String[] ids = uId.split(",");
                String userName = ConvertUtil.obj2StrBlank(xy3.get("USER_NAME"));
                String[] names = userName.split(",");
                for(int i=0; i<ids.length; i++) {
                    Map map = new HashMap();
                    map.put("userId", ids[i]);
                    map.put("userName", names[i]);
                    us.add(map);
                }
            }
            xy3.put("users", us);
        }
        
        slaMap.put("xy1", xy1);
        slaMap.put("xy2", xy2);
        slaMap.put("xy3", xy3);
        
        
        Map jiej1 = new HashMap();
        Map jiej2 = new HashMap();
        Map jiej3 = new HashMap();
        if(null!=userjjList && userjjList.size()>0) {
            if(userjjList.size()==1) {
                jiej1 = userjjList.get(0);
            } else if (userjjList.size()==2) {
                jiej1 = userjjList.get(0);
                jiej2 = userjjList.get(1);
            } else if (userjjList.size()==3) {
                jiej1 = userjjList.get(0);
                jiej2 = userjjList.get(1);
                jiej3 = userjjList.get(2);
            }
        }
        
        if(jiej1.size()>0) {
            String uId = ConvertUtil.obj2StrBlank(jiej1.get("USER_ID"));
            List us = new ArrayList();
            if(StringUtil.notEmpty(uId)) {
                String[] ids = uId.split(",");
                String userName = ConvertUtil.obj2StrBlank(jiej1.get("USER_NAME"));
                String[] names = userName.split(",");
                for(int i=0; i<ids.length; i++) {
                    Map map = new HashMap();
                    map.put("userId", ids[i]);
                    map.put("userName", names[i]);
                    us.add(map);
                }
            }
            jiej1.put("users", us);
        }
        
        if(jiej2.size()>0) {
            String uId = ConvertUtil.obj2StrBlank(jiej2.get("USER_ID"));
            List us = new ArrayList();
            if(StringUtil.notEmpty(uId)) {
                String[] ids = uId.split(",");
                String userName = ConvertUtil.obj2StrBlank(jiej2.get("USER_NAME"));
                String[] names = userName.split(",");
                for(int i=0; i<ids.length; i++) {
                    Map map = new HashMap();
                    map.put("userId", ids[i]);
                    map.put("userName", names[i]);
                    us.add(map);
                }
            }
            jiej2.put("users", us);
        }
        
        
        if(jiej3.size()>0) {
            String uId = ConvertUtil.obj2StrBlank(jiej3.get("USER_ID"));
            List us = new ArrayList();
            if(StringUtil.notEmpty(uId)) {
                String[] ids = uId.split(",");
                String userName = ConvertUtil.obj2StrBlank(jiej3.get("USER_NAME"));
                String[] names = userName.split(",");
                for(int i=0; i<ids.length; i++) {
                    Map map = new HashMap();
                    map.put("userId", ids[i]);
                    map.put("userName", names[i]);
                    us.add(map);
                }
            }
            jiej3.put("users", us);
        }
        
        
        slaMap.put("jiej1", jiej1);
        slaMap.put("jiej2", jiej2);
        slaMap.put("jiej3", jiej3);
        
        return slaMap;
    }
 
    @Override
    public List<Map> getSlalevelList() {
        String sql = "SELECT * FROM SC_SLA WHERE STATE = :state ORDER BY SERIAL";
        return baseDao.queryForList(sql, new SqlParameter("state", 1));
    }
 
    @Override
    public boolean saveBatchSlaTab(HttpServletRequest request) {
        String levelid = request.getParameter("levelid");
        
        String levelName = ConvertUtil.obj2Str(new SC_SLA(levelid).getBeanMapById().get("LEVEL_NAME"));
        String response_time = request.getParameter("response_time");
        String resolve_time = request.getParameter("resolve_time");
        
        String cateIdStrs = new String();
        List<Map> cateIdsList = baseDao.queryForList("SELECT ID FROM SC_SERVCE_CATEGORY WHERE LEVEL = 3 ");
        for (int i = 0; i < cateIdsList.size()-1; i++) {
            cateIdStrs += cateIdsList.get(i).get("ID")+",";
        }
        cateIdStrs += cateIdsList.get(cateIdsList.size()-1).get("ID");  
        
        //查询出该服务目录该级别对应的所有服务级别协议设置
        String selectSql = "SELECT * FROM SC_SLA_CONFIG WHERE CATEGORY_ID = :categoryId AND LEVEL_ID = :levelId AND (CUSTOMER_ID IS NULL OR CUSTOMER_ID = '')";
        String user1 = request.getParameter("user1");
        String userName1 = request.getParameter("userName1");
        
        
        List<SqlParameter> paramListSaveConfig = new ArrayList<SqlParameter>();
        List<SqlParameter> paramListUpdateConfig = new ArrayList<SqlParameter>();
        
        
        List<SqlParameter> configs = new ArrayList<SqlParameter>();
        List<SqlParameter> configs2 = new ArrayList<SqlParameter>();
        
        
        List<SqlParameter> paramList = new ArrayList<SqlParameter>();
        
        if(StringUtil.notEmpty(cateIdStrs)) {
            String[] cateIds = cateIdStrs.split(",");
            for(String cateId : cateIds) {
 
                
                String cateName = ConvertUtil.obj2Str(new SC_SERVCE_CATEGORY(cateId).getBeanMapById().get("CATEGORY_NAME"));
                SqlParameter sqlParameter = new SqlParameter();
                sqlParameter.put("cateId", cateId);
                sqlParameter.put("category_name", cateName);
                sqlParameter.put("level_id", levelid);
                sqlParameter.put("level_name", levelName);
                sqlParameter.put("resolveTime", resolve_time);
                sqlParameter.put("responseTime", response_time);
                sqlParameter.put("dealerType", 2);
                sqlParameter.put("groupId", "");
                sqlParameter.put("groupName", "");
                sqlParameter.put("userId", user1);
                sqlParameter.put("userName", userName1);
                
                
                Map result = baseDao.queryForMap(selectSql,new SqlParameter("categoryId",cateId).addValue("levelId", levelid));
                
                String configId = new String();
                
                if(result.size()>0) {
                    String conId = ConvertUtil.obj2StrBlank(result.get("ID"));
                    SqlParameter sqlParameter2 = new SqlParameter();
                    sqlParameter2.put("configId", conId);
                    configs.add(sqlParameter2);
                    
                    configId = conId;
                    sqlParameter.put("id", configId);
                    
                    paramListUpdateConfig.add(sqlParameter);
                } else {
                    configId = StringUtil.getUUID();
                    sqlParameter.put("id", configId);
                    paramListSaveConfig.add(sqlParameter);
                }
                
                for(int i=2; i<=7; i++) {
                    
                    String time = request.getParameter("time"+i);
                    if(StringUtil.notEmpty(time)) {
                        String user = request.getParameter("user"+i);
                        String userName = request.getParameter("userName"+i);
                        SqlParameter param = new SqlParameter();
                        param.put("id", StringUtil.getUUID());
                        param.put("level_id",configId);
                        if(i>4) {
                            param.put("notice_type", Constants.SC_SLA_USER_NOTICE_TYPE_RESOLVE_OVERTIME);
                        } else {
                            param.put("notice_type", Constants.SC_SLA_USER_NOTICE_TYPE_ANSWER_OVERTIME);
                        }
                        param.put("over_time", time);
                        param.put("user_id", user);
                        param.put("user_name", userName);
                        param.put("type", "2");
                        param.put("dealer_type", "2");
                        param.put("group_id", "");
                        param.put("group_name", "");
                        paramList.add(param);
                    }
                }
                
            }
        }
        
        if(configs.size()>0) {
            String deleteSql2 = "DELETE FROM SC_SLA_USER WHERE LEVEL_ID = :configId";
            baseDao.executeBatch(deleteSql2,configs);
        }
        
        
        if(paramListSaveConfig.size()>0) {
            String saveSql1 = "INSERT INTO SC_SLA_CONFIG(ID,CATEGORY_ID,CATEGORY_NAME,LEVEL_ID,LEVEL_NAME,RESPONSE_TIME,RESOLVE_TIME,STATE,TYPE,USER_ID,USER_NAME,GROUP_ID,GROUP_NAME,DEALER_TYPE) VALUES (" +
            ":id,:cateId,:category_name,:level_id,:level_name,:responseTime,:resolveTime,1,2,:userId,:userName,:groupId,:groupName,2)";
            
            baseDao.executeBatch(saveSql1,paramListSaveConfig);
        }
        
        
        if(paramListUpdateConfig.size()>0) {
            String updateSql1 = "UPDATE SC_SLA_CONFIG SET CATEGORY_ID = :cateId,CATEGORY_NAME = :category_name,LEVEL_ID = :level_id,LEVEL_NAME = :level_name,RESPONSE_TIME = :responseTime,RESOLVE_TIME = :resolveTime," +
            "USER_ID = :userId,USER_NAME = :userName,GROUP_ID = :groupId,GROUP_NAME = :groupName,DEALER_TYPE = 2 WHERE ID = :id";
            baseDao.executeBatch(updateSql1,paramListUpdateConfig);
        }
        
        
        if(paramList.size()>0) {
            String sql = "INSERT INTO SC_SLA_USER(ID,LEVEL_ID,NOTICE_TYPE,OVER_TIME,USER_ID,USER_NAME,TYPE,DEALER_TYPE,GROUP_ID,GROUP_NAME) VALUES(:id,:level_id,:notice_type,:over_time,:user_id,:user_name,:type,:dealer_type,:group_id,:group_name)";
            baseDao.executeBatch(sql, paramList);
        }
        return true;
    }
 
    @Override
    public Map querySlaLevel(String customerId, String threeId,String secondId,int level, String levelId) {
        if(StringUtil.notEmpty(customerId)) {
            if(level == 3) {
                Map map = getSlaLevel(customerId,threeId,levelId);
                
                if(null!=map && map.size()>0) {
                    map.put("isSelf", 1);
                    return map;
                }
                
                map = querySlaLevel(customerId, threeId,secondId, 2, levelId);
                if(null!=map && map.size()>0) {
                    map.put("isSelf", 2);
                    return map;
                }
            }
            
            if(level == 2) {
                
                Map map = getSlaLevel(customerId,secondId,levelId);
                    
                if(null!=map && map.size()>0) {
                    map.put("isSelf", 1);
                    return map;
                }
                
                if(StringUtil.notEmpty(threeId)) {
                    map = querySlaLevel("",threeId,secondId,3,levelId);
                    if(null!=map && map.size()>0) {
                        map.put("isSelf", 2);
                        return map;
                    }
                }
                
                map = querySlaLevel("","",secondId,2,levelId);
                if(null!=map && map.size()>0) {
                    map.put("isSelf", 2);
                    return map;
                }
            }
        } 
        
        if(level == 3) {
            Map map = getSlaLevel(customerId,threeId,levelId);
            if(null!=map && map.size()>0) {
                map.put("isSelf", 1);
                return map;
            }
                
            map = querySlaLevel(customerId,"", secondId, 2, levelId);
            if(null!=map && map.size()>0) {
                map.put("isSelf", 2);
                return map;
            }
            
        }
        
        if(level == 2) {
            Map map = getSlaLevel(customerId,secondId,levelId);
            if(null!=map && map.size()>0) {
                map.put("isSelf", 1);
                return map;
            }    
            
            map = querySlaLevel("","","",0,levelId);
            if(null!=map && map.size()>0) {
                map.put("isSelf", 2);
                return map;
            }
        }
        
        if(level == 0) {
            Map map = getSlaLevel("", "",levelId);
            if(null!=map && map.size()>0) {
                map.put("isSelf", 1);
                return map;
            }    
        }
        
        return new HashMap();
    }
    
    
    private Map getSlaLevel(String customerId, String categoryId,String levelId) {
        Map paramMap = new HashMap();
        StringBuilder builder = new StringBuilder("SELECT COUNT(ID) FROM SC_SLA_CONFIG WHERE LEVEL_ID = :levelId AND STATE = 1 ");
        StringBuilder selectBuilder = new StringBuilder("SELECT * FROM SC_SLA_CONFIG WHERE LEVEL_ID = :levelId AND STATE = 1 ");
        paramMap.put("levelId", levelId);
        if(StringUtil.notEmpty(customerId)) {
            builder.append(" AND CUSTOMER_ID = :customerId ");
            selectBuilder.append(" AND CUSTOMER_ID = :customerId ");
            paramMap.put("customerId", customerId);
        } else {
            builder.append(" AND CUSTOMER_ID IS NULL ");
            selectBuilder.append(" AND CUSTOMER_ID IS NULL ");
        }
        
        if(StringUtil.notEmpty(categoryId)) {
            builder.append(" AND CATEGORY_ID = :categoryId ");
            selectBuilder.append(" AND CATEGORY_ID = :categoryId ");
            paramMap.put("categoryId", categoryId);
        } else {
            builder.append(" AND CATEGORY_ID IS NULL ");
            selectBuilder.append(" AND CATEGORY_ID IS NULL ");
        }
        
        int count = baseDao.queryForInteger(builder.toString(),paramMap);
        
        
        if(count>0) {
            Map slaMap = baseDao.queryForMap(selectBuilder.toString(),paramMap);
            if(null!=slaMap && slaMap.size()>0) {
                
                String userId = ConvertUtil.obj2StrBlank(slaMap.get("USER_ID"));
                List users = new ArrayList();
                if(StringUtil.notEmpty(userId)) {
                    String[] ids = userId.split(",");
                    String userName = ConvertUtil.obj2StrBlank(slaMap.get("USER_NAME"));
                    String[] names = userName.split(",");
                    for(int i=0; i<ids.length; i++) {
                        Map map = new HashMap();
                        map.put("userId", ids[i]);
                        map.put("userName", names[i]);
                        users.add(map);
                    }
                }
                
                slaMap.put("users", users);
                
                String configId = ConvertUtil.obj2StrBlank(slaMap.get("ID"));
                String sqluser = "SELECT A.* FROM SC_SLA_USER A WHERE  A.LEVEL_ID = :level_id ORDER BY A.OVER_TIME";
                List<Map> list = baseDao.queryForList(sqluser, new SqlParameter("level_id",configId));
                
                List<Map> userList = new ArrayList<Map>();
                List<Map> userjjList = new ArrayList<Map>();
                if(null!=list && list.size()>0) {
                    for(Map map : list) {
                        String noticeType = ConvertUtil.obj2StrBlank(map.get("NOTICE_TYPE"));
                        if(noticeType.equals(Constants.SC_SLA_USER_NOTICE_TYPE_ANSWER_OVERTIME)) {
                            userList.add(map);
                        } else {
                            userjjList.add(map);
                        }
                    }
                }
                
                
                Map xy1 = new HashMap();
                Map xy2 = new HashMap();
                Map xy3 = new HashMap();
                if(null!=userList && userList.size()>0) {
                    if(userList.size()==1) {
                        xy1 = userList.get(0);
                    } else if (userList.size()==2) {
                        xy1 = userList.get(0);
                        xy2 = userList.get(1);
                    } else if (userList.size()==3) {
                        xy1 = userList.get(0);
                        xy2 = userList.get(1);
                        xy3 = userList.get(2);
                    }
                }
                if(xy1.size()>0) {
                    String uId = ConvertUtil.obj2StrBlank(xy1.get("USER_ID"));
                    List us = new ArrayList();
                    if(StringUtil.notEmpty(uId)) {
                        String[] ids = uId.split(",");
                        String userName = ConvertUtil.obj2StrBlank(xy1.get("USER_NAME"));
                        String[] names = userName.split(",");
                        for(int i=0; i<ids.length; i++) {
                            Map map = new HashMap();
                            map.put("userId", ids[i]);
                            map.put("userName", names[i]);
                            us.add(map);
                        }
                    }
                    xy1.put("users", us);
                }
                
                if(xy2.size()>0) {
                    String uId = ConvertUtil.obj2StrBlank(xy2.get("USER_ID"));
                    List us = new ArrayList();
                    if(StringUtil.notEmpty(uId)) {
                        String[] ids = uId.split(",");
                        String userName = ConvertUtil.obj2StrBlank(xy2.get("USER_NAME"));
                        String[] names = userName.split(",");
                        for(int i=0; i<ids.length; i++) {
                            Map map = new HashMap();
                            map.put("userId", ids[i]);
                            map.put("userName", names[i]);
                            us.add(map);
                        }
                    }
                    xy2.put("users", us);
                }
                
                
                if(xy3.size()>0) {
                    String uId = ConvertUtil.obj2StrBlank(xy3.get("USER_ID"));
                    List us = new ArrayList();
                    if(StringUtil.notEmpty(uId)) {
                        String[] ids = uId.split(",");
                        String userName = ConvertUtil.obj2StrBlank(xy3.get("USER_NAME"));
                        String[] names = userName.split(",");
                        for(int i=0; i<ids.length; i++) {
                            Map map = new HashMap();
                            map.put("userId", ids[i]);
                            map.put("userName", names[i]);
                            us.add(map);
                        }
                    }
                    xy3.put("users", us);
                }
                
                slaMap.put("xy1", xy1);
                slaMap.put("xy2", xy2);
                slaMap.put("xy3", xy3);
                
                
                Map jiej1 = new HashMap();
                Map jiej2 = new HashMap();
                Map jiej3 = new HashMap();
                if(null!=userjjList && userjjList.size()>0) {
                    if(userjjList.size()==1) {
                        jiej1 = userjjList.get(0);
                    } else if (userjjList.size()==2) {
                        jiej1 = userjjList.get(0);
                        jiej2 = userjjList.get(1);
                    } else if (userjjList.size()==3) {
                        jiej1 = userjjList.get(0);
                        jiej2 = userjjList.get(1);
                        jiej3 = userjjList.get(2);
                    }
                }
                
                if(jiej1.size()>0) {
                    String uId = ConvertUtil.obj2StrBlank(jiej1.get("USER_ID"));
                    List us = new ArrayList();
                    if(StringUtil.notEmpty(uId)) {
                        String[] ids = uId.split(",");
                        String userName = ConvertUtil.obj2StrBlank(jiej1.get("USER_NAME"));
                        String[] names = userName.split(",");
                        for(int i=0; i<ids.length; i++) {
                            Map map = new HashMap();
                            map.put("userId", ids[i]);
                            map.put("userName", names[i]);
                            us.add(map);
                        }
                    }
                    jiej1.put("users", us);
                }
                
                if(jiej2.size()>0) {
                    String uId = ConvertUtil.obj2StrBlank(jiej2.get("USER_ID"));
                    List us = new ArrayList();
                    if(StringUtil.notEmpty(uId)) {
                        String[] ids = uId.split(",");
                        String userName = ConvertUtil.obj2StrBlank(jiej2.get("USER_NAME"));
                        String[] names = userName.split(",");
                        for(int i=0; i<ids.length; i++) {
                            Map map = new HashMap();
                            map.put("userId", ids[i]);
                            map.put("userName", names[i]);
                            us.add(map);
                        }
                    }
                    jiej2.put("users", us);
                }
                
                
                if(jiej3.size()>0) {
                    String uId = ConvertUtil.obj2StrBlank(jiej3.get("USER_ID"));
                    List us = new ArrayList();
                    if(StringUtil.notEmpty(uId)) {
                        String[] ids = uId.split(",");
                        String userName = ConvertUtil.obj2StrBlank(jiej3.get("USER_NAME"));
                        String[] names = userName.split(",");
                        for(int i=0; i<ids.length; i++) {
                            Map map = new HashMap();
                            map.put("userId", ids[i]);
                            map.put("userName", names[i]);
                            us.add(map);
                        }
                    }
                    jiej3.put("users", us);
                }
                
                
                slaMap.put("jiej1", jiej1);
                slaMap.put("jiej2", jiej2);
                slaMap.put("jiej3", jiej3);
                
                return slaMap;
            }
        }
        
        return null;
    }
 
    
    
 
    @Override
    public void saveLevelSla(HttpServletRequest request) {
        String levelid = request.getParameter("levelid");
        String id = request.getParameter("id");
        String levelName = ConvertUtil.obj2Str(new SC_SLA(levelid).getBeanMapById().get("LEVEL_NAME"));
        String response_time = request.getParameter("response_time");
        String resolve_time = request.getParameter("resolve_time");
        
        
        String user1 = request.getParameter("user1");
        String userName1 = request.getParameter("userName1");
        
        SC_SLA_CONFIG config = new SC_SLA_CONFIG();
        config.setLevel_id(levelid).setLevel_name(levelName)
        .setResolve_time(ConvertUtil.obj2Integer(resolve_time))
        .setResponse_time(ConvertUtil.obj2Integer(response_time))
        .setDealer_type(2).setGroup_id("").setGroup_name("").setUser_id(user1).setUser_name(userName1);
        if(StringUtil.isEmpty(id)){
            config.setState(1).setType(2).insert();
        }else{
            config.setId(id).update();
        }
        
        String configId = config.getId();
        
        baseDao.execute("DELETE FROM SC_SLA_USER WHERE LEVEL_ID = :level_id", new SqlParameter("level_id",config.getId()));
        
        
        List<SqlParameter> paramList = new ArrayList<SqlParameter>();
        for(int i=2; i<=7; i++) {
            
            String time = request.getParameter("time"+i);
            if(StringUtil.notEmpty(time)) {
                String user = request.getParameter("user"+i);
                String userName = request.getParameter("userName"+i);
                SqlParameter param = new SqlParameter();
                param.put("id", StringUtil.getUUID());
                param.put("level_id",configId );
                if(i>4) {
                    param.put("notice_type", Constants.SC_SLA_USER_NOTICE_TYPE_RESOLVE_OVERTIME);
                } else {
                    param.put("notice_type", Constants.SC_SLA_USER_NOTICE_TYPE_ANSWER_OVERTIME);
                }
                param.put("over_time", time);
                param.put("user_id", user);
                param.put("user_name", userName);
                param.put("type", "2");
                param.put("dealer_type", "2");
                param.put("group_id", "");
                param.put("group_name", "");
                paramList.add(param);
            }
        }
        
        if(paramList.size()>0) {
            String sql = "INSERT INTO SC_SLA_USER(ID,LEVEL_ID,NOTICE_TYPE,OVER_TIME,USER_ID,USER_NAME,TYPE,DEALER_TYPE,GROUP_ID,GROUP_NAME) VALUES(:id,:level_id,:notice_type,:over_time,:user_id,:user_name,:type,:dealer_type,:group_id,:group_name)";
            baseDao.executeBatch(sql, paramList);
        }
        
    }
    
    @Override
    public Map querySlaUser(String customerId, String threeId,String secondId,int level) {
        if(StringUtil.notEmpty(customerId)) {
            if(level == 3) {
                Map map = getSlaUser(customerId,threeId);
                
                if(null!=map && map.size()>0) {
                    if(ConvertUtil.obj2Integer(map.get("count"))==1){
                        map.put("isSelf", 1);
                        return map;
                    }
                }
                
                map = querySlaUser(customerId, threeId,secondId, 2);
                if(null!=map && map.size()>0) {
                    if(ConvertUtil.obj2Integer(map.get("count"))==1){
                        map.put("isSelf", 2);
                        return map;
                    }
                }
            }
            
            if(level == 2) {
                
                Map map = getSlaUser(customerId,secondId);
                    
                if(null!=map && map.size()>0) {
                    if(ConvertUtil.obj2Integer(map.get("count"))==1){
                        map.put("isSelf", 1);
                        return map;
                    }
                }
                
                if(StringUtil.notEmpty(threeId)) {
                    map = querySlaUser("",threeId,secondId,3);
                    if(null!=map && map.size()>0) {
                        if(ConvertUtil.obj2Integer(map.get("count"))==1){
                            map.put("isSelf", 2);
                            return map;
                        }
                    }
                }
                
                map = querySlaUser("","",secondId,2);
                if(null!=map && map.size()>0) {
                    if(ConvertUtil.obj2Integer(map.get("count"))==1){
                        map.put("isSelf", 2);
                        return map;
                    }
                }
            }
        } 
        
        if(level == 3) {
            Map map = getSlaUser(customerId,threeId);
            if(null!=map && map.size()>0) {
                if(ConvertUtil.obj2Integer(map.get("count"))==1){
                    map.put("isSelf", 1);
                    return map;
                }
            }
                
            map = querySlaUser(customerId,"", secondId, 2);
            if(null!=map && map.size()>0) {
                if(ConvertUtil.obj2Integer(map.get("count"))==1){
                    map.put("isSelf", 2);
                    return map;
                }
            }
                
        }
        
        if(level == 2) {
            Map map = getSlaUser(customerId,secondId);
            if(null!=map && map.size()>0) {
                map.put("isSelf", 1);
                return map;
            }    
            
        }
        
        return new HashMap();
    }
    
    public Map getSlaUser(String customerId,String cateId){
        int count = 0;
        Map param = new HashMap();
        param.put("cateId", cateId);
        param.put("customerId", customerId);
        String groupsql = "SELECT A.* FROM AC_ROLE_GROUP A,AC_ROLE B WHERE A.JSBH = B.ID AND A.STATE = 1 AND B.IDENTIFY = :identify ";
        String usersql = "SELECT A.* FROM GG_USER A,AC_USER_REF_ROLE B,AC_ROLE C WHERE A.ID = B.YHBH AND B.JSBH = C.ID AND A.ZT = 1 AND C.IDENTIFY = :identify ";
        StringBuilder sql = new StringBuilder("(SELECT A.* FROM SC_SERVCE_CATEGORY_USER A,AC_ROLE B WHERE A.GROUP_ID = B.ID AND B.IDENTIFY = :identify AND A.CATEGORY_ID = :cateId "); 
        if(StringUtil.isEmpty(customerId)){
            sql.append(" AND A.CUSTOMER_ID IS NULL  ");
        }else{
            sql.append(" AND A.CUSTOMER_ID =:customerId ");
        }
        sql.append("  ) UNION ALL (SELECT C.* FROM SC_SERVCE_CATEGORY_USER C,AC_ROLE_GROUP D,AC_ROLE E WHERE C.GROUP_ID = D.ID AND D.JSBH = E.ID AND E.IDENTIFY = :identify AND C.CATEGORY_ID = :cateId  ");
        if(StringUtil.isEmpty(customerId)){
            sql.append(" AND C.CUSTOMER_ID IS NULL  ");
        }else{
            sql.append(" AND C.CUSTOMER_ID =:customerId ");
        }
        sql.append(" ) ");
        param.put("identify", Constants.ROLE_FLINE);
        Map yxMap = baseDao.queryForMap(sql.toString(), param);
        if(yxMap!=null && yxMap.size() > 0){
            count = 1;
        }
        List<Map> groupList = baseDao.queryForList(groupsql, param);
        List<Map> userList = baseDao.queryForList(usersql, param);
        yxMap.put("groupList", groupList);
        yxMap.put("userList", userList);
        
        param.put("identify", Constants.ROLE_SLINE);
        Map exMap = baseDao.queryForMap(sql.toString(), param);
        if(exMap!=null && exMap.size() > 0){
            count = 1;
        }
        List<Map> egroupList = baseDao.queryForList(groupsql, param);
        List<Map> euserList = baseDao.queryForList(usersql, param);
        exMap.put("groupList", egroupList);
        exMap.put("userList", euserList);
        
        param.put("identify", Constants.ROLE_TLINE);
        Map sxMap = baseDao.queryForMap(sql.toString(), param);
        if(sxMap!=null && sxMap.size() > 0){
            count = 1;
        }
        List<Map> sgroupList = baseDao.queryForList(groupsql, param);
        List<Map> suserList = baseDao.queryForList(usersql, param);
        sxMap.put("groupList", sgroupList);
        sxMap.put("userList", suserList);
        Map result = new HashMap();
        result.put("yxMap", yxMap);
        result.put("exMap", exMap);
        result.put("sxMap", sxMap);
        result.put("count", count);
        return result;
    }
 
    @Override
    public int deleteLevelSla(String id) {
        Map param = new HashMap();
        param.put("id", id);
        String sql = "SELECT COUNT(ID) FROM SC_SLA_CONFIG WHERE LEVEL_ID = :id";
        int count = baseDao.queryForInteger(sql, param);
        if(count == 0){
            SC_SLA cate = new SC_SLA();
            cate.setId(id).setState(2).update();
        }
        return count;
    }
}