cy
2022-06-22 425675051e544cf29b2132615cfbf7a93dc5e51f
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
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
package cn.ksource.web.controller.business.pages.question;
 
import cn.ksource.beans.*;
import cn.ksource.core.page.PageInfo;
import cn.ksource.core.util.ConvertUtil;
import cn.ksource.core.util.JsonUtil;
import cn.ksource.core.util.ParamsMapUtil;
import cn.ksource.core.util.StringUtil;
import cn.ksource.core.web.SysInfo;
import cn.ksource.core.web.SysInfoMsg;
import cn.ksource.core.web.WebUtil;
import cn.ksource.web.Constants;
import cn.ksource.web.GnConstants;
import cn.ksource.web.facade.customermanage.CustomerManageFacade;
import cn.ksource.web.facade.fpry.FpryFacade;
import cn.ksource.web.facade.incident.IncidentFacade;
import cn.ksource.web.facade.order.OrderFacade;
import cn.ksource.web.facade.question.QuestionFacade;
import cn.ksource.web.service.DataDictionaryService;
import cn.ksource.web.service.device.DeviceService;
import cn.ksource.web.service.file.FileService;
import cn.ksource.web.service.message.MessageService;
import cn.ksource.web.service.order.OrderService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
 
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * 日常运维--问题管理控制器
 * @note:
 * @version
 * @author sxj
 * @date June 28, 2016 10:35:44 AM
 */
@Controller
@RequestMapping("/business/pages/question")
public class QuestionController {
 
    @Autowired
    private QuestionFacade questionFacade;
 
    @Autowired
    private IncidentFacade incidentFacade;
 
    @Autowired
    private DataDictionaryService dataDictionaryService;
 
    @Autowired
    private FileService fileService;
 
    @Autowired
    private OrderService orderService;
 
    @Autowired
    private DeviceService deviceService;
 
    @Autowired
    private OrderFacade orderFacade;
 
    @Resource
    private CustomerManageFacade customerFacade;
 
    @Autowired
    private MessageService messageService;
 
    @Autowired
    private FpryFacade fpryFacade;
 
    /**
     * 选择人员
     * @param request
     * @param response
     * @return
     */
    @RequestMapping("xzry.html")
    public ModelAndView xzry(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/xzry");
        Map param=ParamsMapUtil.getParameterMap(request);
        String currend_id = WebUtil.getLoginedUserId(request);
        param.put("CURRENT_ID", currend_id);
        //所有角色
        List<Map> rlist=fpryFacade.getRole(param);
        //角色下所有人员
        List<Map> ryList=fpryFacade.getLyRy(param);
        modelAndView.addObject("rlist", rlist);
        modelAndView.addObject("ryList", ryList);
        return modelAndView;
    }
 
    /**
     * 复选框选择人员
     * @param request
     * @param response
     * @return
     */
    @RequestMapping("xzryMore.html")
    public ModelAndView xzryMore(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/xzryMore");
        Map param=ParamsMapUtil.getParameterMap(request);
        String currend_id = WebUtil.getLoginedUserId(request);
        param.put("CURRENT_ID", currend_id);
        //所有角色
        List<Map> rlist=fpryFacade.getRole(param);
        //角色下所有人员
        List<Map> ryList=fpryFacade.getLyRy(param);
        modelAndView.addObject("rlist", rlist);
        modelAndView.addObject("ryList", ryList);
        return modelAndView;
    }
 
    /**
     * 问题列表页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="questionList.html", method=RequestMethod.GET)
    public ModelAndView questionList(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/questionList");
 
        //查询工单数量,通过类型判断查询那种类型的数量
        Map msgCount = questionFacade.queryQuestionCount(request);
 
        System.out.println(JsonUtil.map2Json(msgCount));
 
        view.addObject("c", msgCount);
        //查询问题类型数据字典
        List sources = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        view.addObject("sources", sources);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type","1");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
 
        return view;
    }
 
 
    /**
     * 查询问题工单列表数据
     */
    @RequestMapping(value="questionData.html",method=RequestMethod.POST)
    public ModelAndView questionData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        PageInfo list = questionFacade.queryQuestionOrderList(pageInfo,params);
        modelAndView.addObject("orderList", list);
        return modelAndView;
    }
 
 
 
    /**
     * 查询问题工单总数量
     */
    @RequestMapping(value="questionCount.html",method=RequestMethod.POST)
    public void questionCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        int count = questionFacade.queryQuestionOrderCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
 
 
 
    /**
     * 跳转到我的问题工单列表
     */
    @RequestMapping("myQuestion.html")
    public ModelAndView myIncident(HttpServletRequest request) {
        ModelAndView view = new ModelAndView("/business/pages/question/myQuestion");
 
        Map num = orderFacade.queryOrderCountByCate(request, Constants.WORKFLOW_BASE_BUSINESS_TYPE_QUESTION.toString());
 
        view.addObject("num", num);
 
        //查询问题类型数据字典
        List sources = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        view.addObject("sources", sources);
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type","2");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
        return view;
    }
 
 
    /**
     * 查询我的问题列表
     */
    @RequestMapping("myQuestionData.html")
    public ModelAndView myIncidentData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/myQuestionData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        PageInfo question = questionFacade.queryMyQuestionData(pageInfo,params);
        modelAndView.addObject("orders", question);
        return modelAndView;
    }
 
    /**
     * 查询我的问题数量
     */
    @RequestMapping("myQuestionCount.html")
    public void myIncidentCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        int count = questionFacade.queryMyQuestionCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
    /**
     * 服务台创建问题页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="addquestion", method=RequestMethod.GET)
    public ModelAndView addIncidentForService(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/addquestion");
        //来源于事件升级
        Map questionMsg = questionFacade.getQuestionMsgByOrderId(request);
 
 
        //查询问题来源数据字典
        List<Map> froms = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
        //取得问题来源的第一条数据
        if(null!=froms && froms.size()>0) {
            Map from = froms.get(0);
            view.addObject("fromId", from.get("DATAKEY"));
            view.addObject("fromName", from.get("DATAVALUE"));
        }
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
 
        view.addObject("froms", froms);
        view.addObject("questionMsg", questionMsg);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type","2");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
        view.addObject("gnmark", GnConstants.ADDWT);
        return view;
    }
 
    /**
     * 服务台创建问题页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="addfwtquestion", method=RequestMethod.GET)
    public ModelAndView addfwtquestion(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/addquestion");
        //来源于事件升级
        Map questionMsg = questionFacade.getQuestionMsgByOrderId(request);
 
 
        //查询问题来源数据字典
        List<Map> froms = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
        //取得问题来源的第一条数据
        if(null!=froms && froms.size()>0) {
            Map from = froms.get(0);
            view.addObject("fromId", from.get("DATAKEY"));
            view.addObject("fromName", from.get("DATAVALUE"));
        }
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
 
        view.addObject("froms", froms);
        view.addObject("questionMsg", questionMsg);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type","2");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
        view.addObject("gnmark", GnConstants.FWTADDWT);
        return view;
    }
 
    /**
     * 服务台创建问题页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="addchangequestion", method=RequestMethod.GET)
    public ModelAndView addchangequestion(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/addchangequestion");
        //来源于事件升级
        Map questionMsg = questionFacade.getQuestionMsgByOrderId(request);
 
 
 
        //查询问题来源数据字典
        List froms = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
 
        view.addObject("froms", froms);
        view.addObject("questionMsg", questionMsg);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
        return view;
    }
 
    /**
     * 创建问题提交
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="addquestion.html", method=RequestMethod.POST)
    public ModelAndView addquestionSubmit(HttpServletRequest request, HttpServletResponse response,SC_WORKFLOW_QUESTION sc_workflow_question) {
        Map resultMap = questionFacade.saveQuestion(request,sc_workflow_question);
         String result = ConvertUtil.obj2StrBlank(resultMap.get("result"));
         String nouser = ConvertUtil.obj2StrBlank(resultMap.get("nouser"));
            if(result.equals("1")) {
                SysInfoMsg msg = (SysInfoMsg)resultMap.get("msg");
                 return WebUtil.sysInfoPage(request, "操作成功!",
                            "",
                            SysInfo.Success,"/business/pages/question/myQuestion.html",msg);
            }else {
                if(nouser.equals("1")){
                    return WebUtil.sysInfoPage(request, "没有选择问题受理人员",
                            "",
                            SysInfo.Error,"");
                }else{
                    return WebUtil.sysInfoPage(request, "操作失败!",
                            "",
                            SysInfo.Error,"");
                }
 
            }
    }
 
    /**
     * 通过优先级和影响度查询对应的级别
     */
    @RequestMapping("queryLevel.html")
    public void queryLevel(HttpServletRequest request,HttpServletResponse response) {
        String priority_id = request.getParameter("priority_id");
        String influence_id = request.getParameter("influence_id");
        String customerId = request.getParameter("customer_id");
        Map levelMap = questionFacade.queryLevel(priority_id,influence_id,customerId);
 
        WebUtil.write(response, JsonUtil.map2Json(levelMap));
    }
 
    /**
     * 分配人员
     */
    @RequestMapping("slusers.html")
    public ModelAndView slusers(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/slusers");
        String curnodeId = request.getParameter("curnodeId");
        String flowId = request.getParameter("flowId");
        List<Map> nodeList = questionFacade.getFlueNode(request);
        modelAndView.addObject("nodeList", nodeList);
        modelAndView.addObject("curnodeId", curnodeId);
        return modelAndView;
    }
 
    /**
     * 查询所有的分配人员
     */
    @RequestMapping("selectTab.html")
    public ModelAndView selectTab(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/selectTab");
        List<Map> groupList = incidentFacade.getGroupUser(request);
        modelAndView.addObject("groupList", groupList);
        return modelAndView;
    }
 
    /**
     * 查询所有的分配人员
     */
    @RequestMapping("selectDealer.html")
    public ModelAndView selectDealer(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/selectDealer");
        List<Map> groupList = incidentFacade.getGroupUser(request);
        modelAndView.addObject("groupList", groupList);
        return modelAndView;
    }
 
    /**
     * 查询角色
     */
    @RequestMapping("selectGroup.html")
    public ModelAndView selectGroup(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/incident/selectGroup");
        List<Map> groupList = incidentFacade.getGroupUser(request);
        modelAndView.addObject("groupList", groupList);
        return modelAndView;
    }
 
    /**
     * 查询客户自定义组
     */
    @RequestMapping("selectZdyGroup.html")
    public ModelAndView selectZdyGroup(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/selectZdyGroup");
        List<Map> groupList = questionFacade.getZdyGroupList(request);
        modelAndView.addObject("groupList", groupList);
        return modelAndView;
    }
 
    /**
     * 查询客户自定义组
     */
    @RequestMapping("zdyGroupList.html")
    public ModelAndView zdyGroupList(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/zdyGroupList");
        List<Map> groupList = questionFacade.getZdyGroupList(request);
        modelAndView.addObject("groupList", groupList);
        return modelAndView;
    }
 
    /**
     * 添加客户自定义组下的人员
     */
    @RequestMapping(value="addzdyGroupUser.html",method=RequestMethod.GET)
    public ModelAndView addzdyGroupUser(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/addzdyGroupUser");
        String groupId = request.getParameter("groupId");
        if(!StringUtil.isEmpty(groupId)){
 
            modelAndView.addObject("group", new CUSTOM_GROUP(groupId).getBeanMapById());
        }else{
            modelAndView.addObject("group", new HashMap());
        }
 
        Map users = questionFacade.usersbyGroup(request);
 
        modelAndView.addObject("users", users.get("resList"));
        modelAndView.addObject("groupuser", users.get("groupuser"));
        modelAndView.addObject("main", users);
 
        return modelAndView;
    }
 
    /**
     * 添加客户自定义组下的人员
     */
    @RequestMapping(value="addzdyGroupUser.html",method=RequestMethod.POST)
    public ModelAndView addzdyGroupUserSumbit(HttpServletRequest request) {
        String groupId = request.getParameter("groupId");
        String customerId = request.getParameter("customerId");
        questionFacade.addGroupUser(request);
 
        return WebUtil.sysInfoPage(request, "操作成功!",
                "window.top.hideDialog('zdyadd');window.top.document.getElementById('dialogIframedealer').contentWindow.loadGroup();",
                SysInfo.Success,"");
    }
 
    /**
     * 删除客户自定义分组
     */
    @RequestMapping("delzdyGroupUser.html")
    public void delGroupUser(HttpServletRequest request,HttpServletResponse response) {
        String id = request.getParameter("id");
        CUSTOM_GROUP group = new CUSTOM_GROUP();
        group.setId(id).deleteById();
        WebUtil.write(response, "1");
    }
 
    /**
     * 跳转到工单处理页面
     * @param request
     * @return
     */
    @RequestMapping("questionDeal.html")
    public ModelAndView questionDeal(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionDeal");
 
        //查询问题基本信息
        String orderId = request.getParameter("orderId");
        String flowId = request.getParameter("flowId");
        Map questionMap = questionFacade.queryQuestionBaseMsg(orderId);
        //校验当前流程中的处理人是否为当前登录人
        String clr=ConvertUtil.obj2StrBlank(questionMap.get("clr"));
        String dqr=WebUtil.getUserId(request);
        if(clr.equals(dqr)){
            modelAndView.addObject("sfwdqclr", 1);
        }
 
        List<Map> cilist = deviceService.queryLinkDevices(flowId);
        List<Map> orderlist = orderService.queryLinkOrders(flowId);
        List<Map> filelist = fileService.getFileList(flowId);
        questionMap.put("ciList", cilist);
        questionMap.put("orderList", orderlist);
        questionMap.put("fileList", filelist);
 
        //查询问题来源数据字典
        List froms = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
 
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        WORKFLOW_BASE base = new WORKFLOW_BASE(flowId).getInstanceById();
 
        Map node = questionFacade.getFlowMsg(flowId, WebUtil.getLoginedUserId(request));
        //node为空,则为分派到组
        if(StringUtil.isEmpty(ConvertUtil.obj2StrBlank(node.get("ID")))){
            node = new WORKFLOW_NODE(base.getCurrent_node_id()).getBeanMapById();
        }
 
        String isclose = "";
        List<Map> closejd = JsonUtil.json2List(ConvertUtil.obj2Str(questionMap.get("closejd")));
        for(Map map:closejd){
            if(map.get("nodeId").equals(node.get("NODE_TEMPLATE_ID"))){
                isclose = "1";
            }
        }
        String isback = "";
        List<Map> backjd = JsonUtil.json2List(ConvertUtil.obj2Str(questionMap.get("backjd")));
        for(Map map:backjd){
            if(map.get("nodeId").equals(node.get("NODE_TEMPLATE_ID"))){
                isback = "1";
            }
        }
         if((Constants.WTFQ).equals(node.get("NODE_TEMPLATE_ID"))){
            modelAndView = new ModelAndView("/business/pages/question/backquestion");
        }else if((Constants.WTHG).equals(node.get("NODE_TEMPLATE_ID"))){
            modelAndView = new ModelAndView("/business/pages/question/questionSh");
        }
        if(ConvertUtil.obj2Integer(node.get("FLOWSTATE")) == 1){
            modelAndView.addObject("answer", 1);
        }
        //通过工单编号查询工单基本信息
        Map baseMsg = questionFacade.queryQuestionBaseMsg(orderId);
        modelAndView.addObject("dqjd", ConvertUtil.obj2StrBlank(questionMap.get("note")));
        modelAndView.addObject("eventDg", eventDg);
        modelAndView.addObject("eventPri", eventPri);
        modelAndView.addObject("question", questionMap);
        modelAndView.addObject("froms", froms);
        modelAndView.addObject("baseMsg", baseMsg);
        modelAndView.addObject("orderId", orderId);
        modelAndView.addObject("flowId", flowId);
        modelAndView.addObject("nodeId", node.get("ID"));
        modelAndView.addObject("ismain", node.get("IS_ADMIN"));
        modelAndView.addObject("isclose", isclose);
        modelAndView.addObject("isback", isback);
        modelAndView.addObject("curnodeId", node.get("NODE_TEMPLATE_ID"));
        modelAndView.addObject("curnodeState", Constants.getWORKFLOW_NODE_FLOWSTATE_Label(ConvertUtil.obj2Integer(node.get("FLOWSTATE"))));
        modelAndView.addObject("repeat_mark", questionMap.get("REPEAT_MARK"));
        return modelAndView;
    }
 
    @RequestMapping("anwer.html")
    public ModelAndView anwer(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/anwer");
        String flowId = request.getParameter("flowId");
        String nodeId = request.getParameter("nodeId");
        String orderId = request.getParameter("orderId");
        Map question = new SC_WORKFLOW_QUESTION(orderId).getBeanMapById();
        WORKFLOW_NODE node = new WORKFLOW_NODE(nodeId).getInstanceById();
        Map nodeMsgMap = new HashMap();
        if(node.getFlow_type() == 2){
            nodeMsgMap = new WORKFLOW_NODE(node.getSource_node_instance_id()).getBeanMapById();
            nodeMsgMap.put("ORDER_CODE", question.get("ORDER_CODE"));
            nodeMsgMap.put("STATE", question.get("STATE"));
            nodeMsgMap.put("CUSTOMER_NAME", question.get("CUSTOMER_NAME"));
            nodeMsgMap.put("FIRST_CATEGORY_NAME", question.get("FIRST_CATEGORY_NAME"));
            nodeMsgMap.put("SECOND_CATEGORY_NAME", question.get("SECOND_CATEGORY_NAME"));
            nodeMsgMap.put("THIRD_CATEGORY_NAME", question.get("THIRD_CATEGORY_NAME"));
            nodeMsgMap.put("isback", 2);
            view.addObject("nodeMsg", nodeMsgMap);
        }else{
            view.addObject("nodeMsg", question);
        }
 
        view.addObject("flowId", flowId);
        view.addObject("nodeId", nodeId);
        view.addObject("orderId", orderId);
 
 
        return view;
    }
 
 
    @RequestMapping(value="answer.html", method=RequestMethod.POST)
    public void anwerSubmit(HttpServletRequest request, HttpServletResponse response) {
        String result = questionFacade.anwerSubmit(request);
        WebUtil.write(response, result);
    }
 
    /**
     * 查询问题基本信息
     */
    @RequestMapping("questionBaseMsg.html")
    public ModelAndView incidentBaseMsg(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionBaseMsg");
        String orderId = request.getParameter("orderId");
        //通过工单编号查询工单基本信息
        Map baseMsg = questionFacade.queryQuestionBaseMsg(orderId);
        modelAndView.addObject("baseMsg", baseMsg);
        return modelAndView;
    }
 
    /**
     * 问题修改页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping("editQuestion.html")
    public ModelAndView editQuestion(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/editQuestion");
        String id = request.getParameter("id");
        String flowId = request.getParameter("flowId");
        Map questionMap = questionFacade.queryQuestionBaseMsg(id);
        List<Map> fileList = fileService.getFileList(flowId);
        questionMap.put("fileList", fileList);
        view.addObject("question", questionMap);
 
        //查询问题来源数据字典
        List froms = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
 
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
        view.addObject("eventPri", eventPri);
        view.addObject("froms", froms);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
        return view;
    }
 
    /**
     * 修改问题提交
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="editQuestion.html", method=RequestMethod.POST)
    public ModelAndView editQuestionSubmit(HttpServletRequest request, HttpServletResponse response,SC_WORKFLOW_QUESTION sc_workflow_question) {
        questionFacade.updateQuestion(request,sc_workflow_question);
 
        return WebUtil.sysInfoPage(request, "操作成功!",
                "window.top.location.reload(true);",
                SysInfo.Success,"",null);
    }
 
    /**
     * 诊断报告历史
     */
    @RequestMapping(value="questionZdMsg.html",method=RequestMethod.GET)
    public ModelAndView questionZdMsg(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionZdMsg");
        String orderId = request.getParameter("orderId");
        String flowId = request.getParameter("flowId");
        String curnodeId = request.getParameter("curnodeId");
        Map baseMsg = new SC_WORKFLOW_QUESTION(orderId).getBeanMapById();
        modelAndView.addObject("curnodeId", curnodeId);
        modelAndView.addObject("baseMsg", baseMsg);
 
        return modelAndView;
    }
 
    /**
     * 诊断报告历史数据
     */
    @RequestMapping(value="questionzdmsgdata.html",method=RequestMethod.POST)
    public ModelAndView questionzdmsgdata(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionzdmsgdata");
        String flowId = request.getParameter("flowId");
        String orderId = request.getParameter("orderId");
        List<Map> zdList = questionFacade.getZdMsgList(flowId);
        modelAndView.addObject("zdList", zdList);
        modelAndView.addObject("userId", WebUtil.getLoginedUserId(request));
        modelAndView.addObject("orderMsg", new SC_WORKFLOW_QUESTION(orderId).getBeanMapById());
        return modelAndView;
    }
 
    /**
     * 诊断报告历史
     */
    @RequestMapping(value="viewquestionZdMsg.html",method=RequestMethod.POST)
    public ModelAndView viewquestionZdMsg(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/viewquestionZdMsg");
        String orderId = request.getParameter("orderId");
        String flowId = request.getParameter("flowId");
        String curnodeId = request.getParameter("curnodeId");
        modelAndView.addObject("curnodeId", curnodeId);
        List<Map> zdList = questionFacade.getZdMsgList(flowId);
        modelAndView.addObject("zdList", zdList);
        modelAndView.addObject("userId", WebUtil.getLoginedUserId(request));
        modelAndView.addObject("orderMsg", new SC_WORKFLOW_QUESTION(orderId).getBeanMapById());
        return modelAndView;
    }
 
    /**
     * 跳转到填写结局方案页面
     */
    @RequestMapping(value="questionZdReport.html",method=RequestMethod.GET)
    public ModelAndView questionZdReport(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionZdReport");
        String id = request.getParameter("id");
        String type = request.getParameter("type");
        Map zdMsg = questionFacade.getzdmsgbyId(request);
        List<Map> fileList = new ArrayList<Map>();
        if(!StringUtil.isEmpty(type)){
 
            if("1".equals(type)){
                fileList=fileService.getFileList(ConvertUtil.obj2StrBlank(zdMsg.get("ZDID")));
 
            }else{
                fileList=fileService.getFileList(ConvertUtil.obj2StrBlank(zdMsg.get("ID")));
            }
 
        }
 
        modelAndView.addObject("zdMsg", zdMsg);
        modelAndView.addObject("type", type);
        modelAndView.addObject("fileList", fileList);
 
        return modelAndView;
    }
 
    /**
     * 结果方案提交
     */
    @RequestMapping(value="questionZdReport.html",method=RequestMethod.POST)
    public ModelAndView questionZdReportsubmit(HttpServletRequest request,HttpServletResponse response) {
         questionFacade.updateZdMsg(request);
        return WebUtil.sysInfoPage(request, "操作成功!",
                "window.top.document.getElementById('zdReportIframe').contentWindow.queryRecord();window.top.hideDialog('2');",
                SysInfo.Success,"",null);
 
    }
 
    /**
     * 诊断报告历史数据
     */
    @RequestMapping(value="delReport.html",method=RequestMethod.POST)
    public void delReport(HttpServletRequest request,HttpServletResponse response) {
        String reportId = request.getParameter("reportId");
        QUESTION_ZD_HISTORY zd = new QUESTION_ZD_HISTORY(reportId);
        zd.deleteById();
        WebUtil.write(response, "1");
    }
 
    /**
     * 查询是否可以进入下一个节点
     */
    @RequestMapping("issave.html")
    public void issave(HttpServletRequest request,HttpServletResponse response) {
        String issave = questionFacade.issave(request);
        WebUtil.write(response, issave);
    }
 
    /**
     * 分配人员
     */
    @RequestMapping("wtusersAssign.html")
    public ModelAndView queryUser(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/wtusersAssign");
        String curnodeId = request.getParameter("curnodeId");
        String flowId = request.getParameter("flowId");
        List<Map> nodeList = questionFacade.getFlueNode(request);
        Map tempMsg = questionFacade.gettempMsg(flowId,WebUtil.getLoginedUserId(request));
        if(tempMsg.get("ID") != null){
            Map user = JsonUtil.json2Map(ConvertUtil.obj2StrBlank(tempMsg.get("DEALER")));
            tempMsg.put("userId", user.get("userid"));
            tempMsg.put("userName", user.get("username"));
        }
        if(tempMsg.get("ID") == null){
            if(curnodeId.equals(Constants.WTZD)){
                List<Map> zdmsg = questionFacade.getZdMsgList(flowId);
                if(zdmsg.size()> 0){
                    modelAndView.addObject("zdmsg", zdmsg.get(0));
                    List fileList=fileService.getFileList(ConvertUtil.obj2StrBlank(zdmsg.get(0).get("ID")));
                    modelAndView.addObject("fileList", fileList);
                }
            }
        }
        modelAndView.addObject("nodeList", nodeList);
        modelAndView.addObject("curnodeId", curnodeId);
        modelAndView.addObject("tempMsg", tempMsg);
        return modelAndView;
    }
 
    /**
     * 分派人员
     */
    @RequestMapping("saveusersAssign.html")
    public ModelAndView usersAssign(HttpServletRequest request,HttpServletResponse response) {
        String savetype = request.getParameter("savetype");
         Map resultMap = questionFacade.updateAssign(request);
         if("1".equals(savetype)){
             return WebUtil.sysInfoPage(request, "操作成功!",
                        "window.top.hideDialog('1');",
                        SysInfo.Success,"/business/pages/question/myQuestion.html",null);
         }else{
         String result = ConvertUtil.obj2StrBlank(resultMap.get("result"));
            if(result.equals("1")) {
                SysInfoMsg msg = (SysInfoMsg)resultMap.get("msg");
                 return WebUtil.sysInfoPage(request, "操作成功!",
                            "window.top.hideDialog('1');",
                            SysInfo.Success,"/business/pages/question/myQuestion.html",msg);
            }else {
                return WebUtil.sysInfoPage(request, "操作失败!",
                        "",
                        SysInfo.Error,"");
 
            }
         }
 
    }
 
    /**
     * 流转备注
     */
    @RequestMapping(value="lzbz.html", method=RequestMethod.GET)
    public ModelAndView lzbz(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/lzbz");
        return modelAndView;
    }
 
    /**
     * 流转备注
     */
    @RequestMapping(value="lzbz.html", method=RequestMethod.POST)
    public ModelAndView lzbzsubmit(HttpServletRequest request,HttpServletResponse response) {
         questionFacade.updatefinishnode(request);
         return WebUtil.sysInfoPage(request, "操作成功!",
                    "window.top.hideDialog('2');",
                    SysInfo.Success,"/business/pages/question/myQuestion.html");
    }
 
    /**
     * 工单审核中回退
     */
    @RequestMapping(value="orderBack.html", method=RequestMethod.GET)
    public ModelAndView orderback(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/orderBack");
        String nodeId = request.getParameter("nodeId");
        Map nodeMap = questionFacade.getBeforeNodeMsg(nodeId);
        String node_template_name = Constants.getquestionNodeLabel(ConvertUtil.obj2StrBlank(nodeMap.get("NODE_TEMPLATE_ID")));
        nodeMap.put("NODE_TEMPLATE_NAME",node_template_name );
        modelAndView.addObject("nodeMap", nodeMap);
        return modelAndView;
    }
 
    /**
     * 工单审核中回退
     */
    @RequestMapping(value="orderBack.html", method=RequestMethod.POST)
    public ModelAndView orderBacksubmit(HttpServletRequest request,HttpServletResponse response) {
        Map resultMap = questionFacade.gobackNodeSubmit(request);
        SysInfoMsg msg = (SysInfoMsg)resultMap.get("msg");
         return WebUtil.sysInfoPage(request, "操作成功!",
                    "window.top.hideDialog('2');",
                    SysInfo.Success,"/business/pages/question/myQuestion.html",msg);
    }
 
    /**
     * 跳转到填写申请工单结束方案页面
     */
    @RequestMapping(value="adminEndQuestion.html",method=RequestMethod.GET)
    public ModelAndView adminEndQuestion(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/adminEndQuestion");
 
        return modelAndView;
    }
 
    /**
     * 申请工单结束方案提交
     */
    @RequestMapping(value="adminEndQuestion.html",method=RequestMethod.POST)
    public ModelAndView adminEndQuestionSubmit(HttpServletRequest request,HttpServletResponse response) {
        Map resultMap = questionFacade.updateApplyEnd(request);
        SysInfoMsg msg = (SysInfoMsg)resultMap.get("msg");
        return WebUtil.sysInfoPage(request, "操作成功!",
                "window.top.hideDialog('10');",
                SysInfo.Success,"/business/pages/question/myQuestion.html",msg);
    }
 
    /**
     * 跳转到填写结局方案页面
     */
    @RequestMapping(value="endQuestion.html",method=RequestMethod.GET)
    public ModelAndView endQuestion(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/endQuestion");
        String orderId = request.getParameter("orderId");
        Map question = new SC_WORKFLOW_QUESTION(orderId).getBeanMapById();
        Map endMsg = questionFacade.getEndMsgById(orderId);
        //查询解决方式数据字典
        List<Map> ways = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTIONEND_RESOLVE_TYPE);
        //查询解决方式数据字典
        List closeways = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTIONCLOSE_RESOLVE_TYPE);
        modelAndView.addObject("closeways", closeways);
        modelAndView.addObject("ways", ways);
        modelAndView.addObject("endMsg", endMsg);
        modelAndView.addObject("question", question);
 
        return modelAndView;
    }
 
    /**
     * 结果方案提交
     */
    @RequestMapping(value="endQuestion.html",method=RequestMethod.POST)
    public ModelAndView endQuestionsubmit(HttpServletRequest request,HttpServletResponse response) {
        questionFacade.updateEndQuestion(request);
        String orderId = request.getParameter("orderId");
 
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/rechange");
        modelAndView.addObject("orderId", orderId);
        modelAndView.addObject("bustype", Constants.WORKFLOW_BASE_BUSINESS_TYPE_QUESTION);
        return modelAndView;
 
    }
 
    /**
     * 查询重复问题工单
     */
    @RequestMapping("linkwtOrder.html")
    public ModelAndView linkwtOrder(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/linkwtOrder");
 
        return modelAndView;
    }
 
    /**
     * 查询关联工单
     */
    @RequestMapping("orderwtList.html")
    public ModelAndView orderwtList(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/orderwtList");
        List orders = questionFacade.queryLinkwtOrder(request);
        modelAndView.addObject("orders", orders);
        return modelAndView;
    }
 
    /**
     * 问题回退信息提交
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="backquestion.html", method=RequestMethod.POST)
    public ModelAndView backUpdatequestionSubmit(HttpServletRequest request, HttpServletResponse response,SC_WORKFLOW_QUESTION sc_workflow_question) {
        Map resultMap = questionFacade.saveQuestion(request,sc_workflow_question);
         String result = ConvertUtil.obj2StrBlank(resultMap.get("result"));
         SysInfoMsg msg = (SysInfoMsg)resultMap.get("msg");
         return WebUtil.sysInfoPage(request, "操作成功!",
                    "",
                    SysInfo.Success,"/business/pages/question/myQuestion.html",msg);
    }
 
    /**
     * 工单审核中关闭
     */
    @RequestMapping(value="closequestion.html", method=RequestMethod.GET)
    public ModelAndView orderclose(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/closequestion");
        String orderId = request.getParameter("orderId");
        Map question = new SC_WORKFLOW_QUESTION(orderId).getBeanMapById();
        //查询解决方式数据字典
        List ways = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTIONCLOSE_RESOLVE_TYPE);
        modelAndView.addObject("ways", ways);
        modelAndView.addObject("question", question);
        return modelAndView;
    }
 
    /**
     * 工单审核中关闭
     */
    @RequestMapping(value="closequestion.html", method=RequestMethod.POST)
    public ModelAndView closequestionsubmit(HttpServletRequest request,HttpServletResponse response) {
 
        questionFacade.updateResolveType(request);
        return WebUtil.sysInfoPage(request, "操作成功!",
                "window.top.hideDialog('3');",
                SysInfo.Success,"/business/pages/question/myQuestion.html",null);
    }
 
    /**
     * 跳转到订单查看页面
     */
    @RequestMapping("questionDetail.html")
    public ModelAndView incidentDetail(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionDetail");
 
        //查询问题基本信息
        String orderId = request.getParameter("orderId");
        String flowId = request.getParameter("flowId");
 
        //通过工单编号查询工单基本信息
        Map baseMsg = questionFacade.queryQuestionBaseMsg(orderId);
        String isopen = questionFacade.getIsOpenQuestion(request);
        messageService.doReadMessage(orderId, WebUtil.getUserId(request));
        modelAndView.addObject("baseMsg", baseMsg);
        modelAndView.addObject("orderId", orderId);
        modelAndView.addObject("flowId", flowId);
        modelAndView.addObject("isopen", isopen);
 
        return modelAndView;
    }
 
    /**
     * 问题处理服务报告
     * @param request
     * @return
     */
    @RequestMapping("questionInfo.html")
    public ModelAndView QuestionInfo(HttpServletRequest request){
        ModelAndView view = new ModelAndView("/business/pages/question/questionInfo");
        Map map=questionFacade.questionInfo(request);
        Map report=(Map)map.get("questionMap");
        if(report!=null){
            //项目编号
            String CUSTOMER_ID =ConvertUtil.obj2Str(report.get("CUSTOMER_ID"));
            if(StringUtil.notEmpty(CUSTOMER_ID)){
                SC_PARTNER_CUSTOMER_INFO customer_INFO=new SC_PARTNER_CUSTOMER_INFO(CUSTOMER_ID).getInstanceById();
                if (customer_INFO !=null)
                report.put("customer_code", customer_INFO.getCustomer_code());
            }
            String FIRST_CATEGORY_ID=ConvertUtil.obj2Str(report.get("FIRST_CATEGORY_ID"));
            if(StringUtil.notEmpty(FIRST_CATEGORY_ID)){
                SC_SERVCE_CATEGORY sc_SERVCE_CATEGORY =new SC_SERVCE_CATEGORY(FIRST_CATEGORY_ID).getInstanceById();
                report.put("FIRST_CATEGORY_CODE", sc_SERVCE_CATEGORY.getCategory_code());
            }
            String SECOND_CATEGORY_ID=ConvertUtil.obj2Str(report.get("SECOND_CATEGORY_ID"));
            if(StringUtil.notEmpty(SECOND_CATEGORY_ID)){
                SC_SERVCE_CATEGORY sc_SERVCE_CATEGORY =new SC_SERVCE_CATEGORY(SECOND_CATEGORY_ID).getInstanceById();
                report.put("SECOND_CATEGORY_CODE", sc_SERVCE_CATEGORY.getCategory_code());
            }
            String THIRD_CATEGORY_ID=ConvertUtil.obj2Str(report.get("THIRD_CATEGORY_ID"));
            if(StringUtil.notEmpty(THIRD_CATEGORY_ID)){
                SC_SERVCE_CATEGORY sc_SERVCE_CATEGORY =new SC_SERVCE_CATEGORY(THIRD_CATEGORY_ID).getInstanceById();
                report.put("THIRD_CATEGORY_CODE", sc_SERVCE_CATEGORY.getCategory_code());
            }
        }
        view.addObject("questionMap", report);
        view.addObject("orderList", map.get("orderList"));
        view.addObject("ciList", map.get("ciList"));
        view.addObject("fileList", map.get("fileList"));
        return view;
    }
 
    /**
     * 退回信息
     */
    @RequestMapping("orderBackMsg.html")
    public ModelAndView orderBackMsg(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/orderBackMsg");
        String orderId = request.getParameter("orderId");
        String nodeId = request.getParameter("nodeId");
        Map question = new SC_WORKFLOW_QUESTION(orderId).getBeanMapById();
        WORKFLOW_NODE node = new WORKFLOW_NODE(nodeId).getInstanceById();
 
        Map nodeMsgMap = new WORKFLOW_NODE(node.getSource_node_instance_id()).getBeanMapById();
        nodeMsgMap.put("NAME", question.get("NAME"));
        modelAndView.addObject("nodeMsg", nodeMsgMap);
        return modelAndView;
    }
 
    /**
     * 工单挂起
     */
    @RequestMapping(value="questiongq.html", method=RequestMethod.GET)
    public ModelAndView questiongq(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questiongq");
        //查询解决方式数据字典
        List ways = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_GQYY);
        modelAndView.addObject("ways", ways);
        return modelAndView;
    }
 
    /**
     * 工单挂起
     */
    @RequestMapping(value="questiongq.html", method=RequestMethod.POST)
    public ModelAndView questiongqsubmit(HttpServletRequest request,HttpServletResponse response) {
 
        questionFacade.updateQuestiongq(request);
        return WebUtil.sysInfoPage(request, "操作成功!",
                "window.top.hideDialog('3');",
                SysInfo.Success,"/business/pages/question/myQuestion.html",null);
    }
 
    /**
     * 查询挂起历史
     */
    @RequestMapping("gqhistoryList.html")
    public ModelAndView gqhistoryList(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/gqhistoryList");
 
        return modelAndView;
    }
 
    /**
     * 查询挂起历史数据
     */
    @RequestMapping("gqhistoryData.html")
    public ModelAndView gqhistoryData(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/gqhistoryData");
        List gqList = questionFacade.queryGqhistoryData(request);
        modelAndView.addObject("gqList", gqList);
        return modelAndView;
    }
 
    /**
     * 工单开启
     */
    @RequestMapping(value="questionopen.html", method=RequestMethod.GET)
    public ModelAndView questionopen(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionopen");
        return modelAndView;
    }
 
    /**
     * 工单开启
     */
    @RequestMapping(value="questionopen.html",method=RequestMethod.POST)
    public ModelAndView questionopenSubmit(HttpServletRequest request,HttpServletResponse response) {
         questionFacade.updateQuestionOpen(request);
         return WebUtil.sysInfoPage(request, "操作成功!",
                    "window.top.hideDialog('5');",
                    SysInfo.Success,"/business/pages/question/myQuestion.html",null);
    }
 
    /**
     * 跳转到我的工单池页面
     */
    @RequestMapping("myquestionpool.html")
    public ModelAndView myquestionpool(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/myquestionpool");
        String type = request.getParameter("type");
        //查询工单数量,通过类型判断查询那种类型的数量
        Map msgCount = questionFacade.querymyQuestionpoolCount(request);
 
        System.out.println(JsonUtil.map2Json(msgCount));
 
        modelAndView.addObject("c", msgCount);
        //查询工单类型
        Map<String, String> state = Constants.mapWORKFLOW_BASE_BUSINESS_TYPE;
        List ways = new ArrayList();
        for (Map.Entry<String, String> entry : state.entrySet()) {
            String key = entry.getKey();
            String value = entry.getValue();
            Map map = new HashMap();
            map.put("typeId", key);
            map.put("typeName", value);
            if(key.equals(type)) {
                map.put("checked", 1);
            } else {
                map.put("checked", 2);
            }
            ways.add(map);
        }
        modelAndView.addObject("types", ways);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        modelAndView.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type","2");
        Map map = questionFacade.getOrderNum(params);
        modelAndView.addObject("data", map);
        return modelAndView;
    }
 
    /**
     * 查询我的工单池数据
     */
    @RequestMapping("myquestionpoolData.html")
    public ModelAndView myquestionpoolData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/myquestionPoolData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        PageInfo orderList = questionFacade.myquestionpoolData(pageInfo,params);
 
        modelAndView.addObject("orders", orderList);
        return modelAndView;
    }
 
    /**
     * 查询我的工单池数据
     */
    @RequestMapping("myquestionpoolCount.html")
    public void myquestionpoolCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        int count = questionFacade.myquestionpoolCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
 
    /**
     * 事件服务台首页(我的)
     * @param model
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="myQuestionIndex.html")
    public String myQuestionIndex(Model model,HttpServletRequest request,HttpServletResponse response){
        List<Map> cusList = customerFacade.getCusList();
        model.addAttribute("cusList", cusList);
        model.addAttribute("userId", WebUtil.getUserId(request));
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type","2");
        Map map = questionFacade.getOrderNum(params);
        model.addAttribute("data", map);
        return "/business/pages/question/myQuestionIndex";
    }
 
 
    @RequestMapping(value="myQuestionIndexLoad.html")
    public String myQuestionIndexLoad(Model model,HttpServletRequest request,HttpServletResponse response){
        Map<String, String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getUserId(request));
 
        //工单池问题数量
        int poolCount = questionFacade.myquestionpoolCount(params);
        //待处理问题数量
        params.put("type","1");
        int pendingCount = questionFacade.querymyQuestionOrderNodeCount(params);
        //进行中问题数量
        params.put("type","2");
        int inHandCount = questionFacade.querymyQuestionOrderNodeCount(params);
        //已处理
        params.put("type","3");
        int processedCount = questionFacade.querymyQuestionOrderNodeCount (params);
 
        model.addAttribute("poolCount",poolCount);
        model.addAttribute("pendingCount",pendingCount);
        model.addAttribute("inHandCount",inHandCount);
        model.addAttribute("processedCount",processedCount);
        return "/business/pages/question/myQuestionIndexLoad";
    }
 
    /**
     * 查询最近一月问题数量
     * @param request
     * @param response
     */
    @RequestMapping(value="getQuestionSumLineChart.html")
    public void getQuestionSumLineChart(HttpServletRequest request,HttpServletResponse response){
        Map<String, String> params = ParamsMapUtil.getParameterMap(request);
        Map info = questionFacade.getLastMonthQuestionCount(params);
        WebUtil.write(response, JsonUtil.map2Json(info));
    }
    /**
     * 查询最近一月问题级别分析
     * @param request
     * @param response
     */
    @RequestMapping(value="getQuestionLvPieChart.html")
    public void getQuestionLvPieChart(HttpServletRequest request,HttpServletResponse response){
        Map<String, String> params = ParamsMapUtil.getParameterMap(request);
        Map info = questionFacade.getLastMonthQuestionLv(params);
        WebUtil.write(response, JsonUtil.map2Json(info));
    }
 
    /**
     * 查询最近一月问题优先级分析
     * @param request
     * @param response
     */
    @RequestMapping(value="getQuestionPriPieChart.html")
    public void getQuestionPriPieChart(HttpServletRequest request,HttpServletResponse response){
        Map<String, String> params = ParamsMapUtil.getParameterMap(request);
        Map info = questionFacade.getLastMonthQuestionPri(params);
        WebUtil.write(response, JsonUtil.map2Json(info));
    }
 
    /**
     * 查询最近一月问题影响度分析
     * @param request
     * @param response
     */
    @RequestMapping(value="getQuestionEffectPieChart.html")
    public void getQuestionEffectPieChart(HttpServletRequest request,HttpServletResponse response){
        Map<String, String> params = ParamsMapUtil.getParameterMap(request);
        Map info = questionFacade.getLastMonthQuestionEffect(params);
        //System.out.println("json--------------------------"+JsonUtil.map2Json(info));
        WebUtil.write(response, JsonUtil.map2Json(info));
    }
 
    /**
     * 查询最近一月服务目录问题数量
     * @param request
     * @param response
     */
    @RequestMapping(value="getQuestionServerLineChart.html")
    public void getQuestionServerLineChart(HttpServletRequest request,HttpServletResponse response){
        Map<String, String> params = ParamsMapUtil.getParameterMap(request);
        Map info = questionFacade.getLastMonthQuestionServer(params);
        WebUtil.write(response, JsonUtil.map2Json(info));
    }
 
 
    /**
     * 问题待响应列表页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="{type}/myquestionNodeList.html", method=RequestMethod.GET)
    public ModelAndView myquestionNodeList(HttpServletRequest request, HttpServletResponse response,@PathVariable(value="type") String type) {
        ModelAndView view = new ModelAndView("/business/pages/question/myQuestionNodeList");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type", type);
        //查询工单数量,通过类型判断查询那种类型的数量
        Map msgCount = questionFacade.querymyQuestionNodeCount(params);
 
        System.out.println(JsonUtil.map2Json(msgCount));
 
        view.addObject("c", msgCount);
        //查询问题类型数据字典
        List sources = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        view.addObject("sources", sources);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
        view.addObject("type", type);
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
 
 
        params.put("type","2");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
        return view;
    }
 
 
 
    /**
     * 查询问题工单列表数据
     */
    @RequestMapping(value="myquestionNodeData.html",method=RequestMethod.POST)
    public ModelAndView myquestionNodeData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/myQuestionNodeData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        PageInfo list = questionFacade.querymyQuestionOrderNodeList(pageInfo,params);
        modelAndView.addObject("orderList", list);
        modelAndView.addObject("type", params.get("type"));
        return modelAndView;
    }
 
 
 
    /**
     * 查询问题工单总数量
     */
    @RequestMapping(value="myquestionNodeCount.html",method=RequestMethod.POST)
    public void myquestionNodeCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        int count = questionFacade.querymyQuestionOrderNodeCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
    /**
     * 问题待响应列表页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="{type}/myquestionEndList.html", method=RequestMethod.GET)
    public ModelAndView myquestionEndList(HttpServletRequest request, HttpServletResponse response,@PathVariable(value="type") String type) {
        ModelAndView view = new ModelAndView("/business/pages/question/myquestionEndList");
        //查询问题类型数据字典
        List sources = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        view.addObject("sources", sources);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
        view.addObject("type", type);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        params.put("type","2");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
 
        return view;
    }
 
 
 
    /**
     * 查询问题工单列表数据
     */
    @RequestMapping(value="myquestionEndData.html",method=RequestMethod.POST)
    public ModelAndView myquestionEndData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/myquestionEndData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        PageInfo list = questionFacade.querymyQuestionEndList(pageInfo,params);
        modelAndView.addObject("orderList", list);
        modelAndView.addObject("type", params.get("type"));
        return modelAndView;
    }
 
 
 
    /**
     * 查询问题工单总数量
     */
    @RequestMapping(value="myquestionEndCount.html",method=RequestMethod.POST)
    public void myquestionEndCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getLoginedUserId(request));
        int count = questionFacade.querymyQuestionEndCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
    /**
     * 问题催办
     * @return
     */
    @RequestMapping(value="questionRemind.html",method=RequestMethod.GET)
    public String questionRemind(HttpServletRequest request,HttpServletResponse response){
        return "/business/pages/question/questionRemind";
    }
 
    @RequestMapping(value="questionRemind.html",method=RequestMethod.POST)
    public ModelAndView doQuestionRemind(HttpServletRequest request,HttpServletResponse response){
        String reminder = WebUtil.getLoginUser(request).getLoginUser().get("ZSXM").toString();
        String flowId = request.getParameter("flowId");
        String text = request.getParameter("text");
        messageService.sendOrderRemindersMsg(flowId, reminder, text);
        return WebUtil.sysInfoPage(request, "操作成功!",
                "window.top.hideDialog('0');",
                SysInfo.Success,"");
    }
 
    /**
     * 所有工单池
     */
    @RequestMapping("questionpool.html")
    public ModelAndView orderpool(HttpServletRequest request,HttpServletResponse response) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionpool");
        //查询工单数量,通过类型判断查询那种类型的数量
        Map msgCount = questionFacade.queryQuestionpoolCount(request);
 
        System.out.println(JsonUtil.map2Json(msgCount));
 
        modelAndView.addObject("c", msgCount);
        //查询工单类型
        Map<String, String> state = Constants.mapWORKFLOW_BASE_BUSINESS_TYPE;
        List ways = new ArrayList();
        for (Map.Entry<String, String> entry : state.entrySet()) {
            String key = entry.getKey();
            String value = entry.getValue();
            Map map = new HashMap();
            map.put("typeId", key);
            map.put("typeName", value);
            ways.add(map);
        }
        modelAndView.addObject("types", ways);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        modelAndView.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("type","1");
        Map map = questionFacade.getOrderNum(params);
        modelAndView.addObject("data", map);
 
 
        return modelAndView;
    }
 
    /**
     * 查询我的工单池数据
     */
    @RequestMapping("questionpoolData.html")
    public ModelAndView questionpoolData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionPoolData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        PageInfo orderList = questionFacade.questionpoolData(pageInfo,params);
 
        modelAndView.addObject("orders", orderList);
        return modelAndView;
    }
 
    /**
     * 查询我的工单池数据
     */
    @RequestMapping("questionpoolCount.html")
    public void questionpoolCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        int count = questionFacade.questionpoolCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
    /**
     * 问题待响应列表页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="questionNodeList.html", method=RequestMethod.GET)
    public ModelAndView questionDxyList(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/questionNodeList");
        //查询工单数量,通过类型判断查询那种类型的数量
        Map msgCount = questionFacade.queryQuestionNodeCount(request);
 
        System.out.println(JsonUtil.map2Json(msgCount));
 
        view.addObject("c", msgCount);
        //查询问题类型数据字典
        List sources = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        view.addObject("sources", sources);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
 
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("type","1");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
 
        return view;
    }
 
 
 
    /**
     * 查询问题工单待响应列表数据
     */
    @RequestMapping(value="questionNodeData.html",method=RequestMethod.POST)
    public ModelAndView questionDxyData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionNodeData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        PageInfo list = questionFacade.queryQuestionOrderNodeList(pageInfo,params);
        modelAndView.addObject("orderList", list);
        return modelAndView;
    }
 
 
 
    /**
     * 查询问题工单待响应总数量
     */
    @RequestMapping(value="questionNodeCount.html",method=RequestMethod.POST)
    public void questionDxyCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        int count = questionFacade.queryQuestionOrderNodeCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
    /**
     * 问题进行中列表页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="questionJxzList.html", method=RequestMethod.GET)
    public ModelAndView questionJxzList(HttpServletRequest request, HttpServletResponse response) {
        ModelAndView view = new ModelAndView("/business/pages/question/questionJxzList");
        //查询工单数量,通过类型判断查询那种类型的数量
        Map msgCount = questionFacade.queryQuestionJxzNodeCount(request);
 
        System.out.println(JsonUtil.map2Json(msgCount));
 
        view.addObject("c", msgCount);
        //查询问题类型数据字典
        List sources = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        view.addObject("sources", sources);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("type","1");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
        return view;
    }
 
 
 
    /**
     * 查询问题工单进行中列表数据
     */
    @RequestMapping(value="questionJxzData.html",method=RequestMethod.POST)
    public ModelAndView questionJxzData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionJxzData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        PageInfo list = questionFacade.queryQuestionJxzList(pageInfo,params);
        modelAndView.addObject("orderList", list);
        return modelAndView;
    }
 
 
 
    /**
     * 查询问题工单进行中总数量
     */
    @RequestMapping(value="questionJxzCount.html",method=RequestMethod.POST)
    public void questionJxzCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        int count = questionFacade.queryQuestionJxzCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
    /**
     * 问题待响应列表页面
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="{type}/questionEndList.html", method=RequestMethod.GET)
    public ModelAndView questionEndList(HttpServletRequest request, HttpServletResponse response,@PathVariable(value="type") String type) {
        ModelAndView view = new ModelAndView("/business/pages/question/questionEndList");
        //查询问题类型数据字典
        List sources = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.QUESTION_SOURCE);
 
        view.addObject("sources", sources);
 
        //查询该加盟商的事件优先级
        List<Map> eventPri = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_PRI);
        view.addObject("eventPri", eventPri);
        //查询事件影响度数据字典
        List<Map> eventDg = dataDictionaryService.getDataDictionaryByCategoryKey(Constants.EVENT_EFFECT_DG);
        view.addObject("eventDg", eventDg);
        view.addObject("type", type);
        //客户列表
        List<Map> cusList = incidentFacade.getCustomerList();
        view.addObject("customers", cusList);
 
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("type","1");
        Map map = questionFacade.getOrderNum(params);
        view.addObject("data", map);
        return view;
    }
 
 
 
    /**
     * 查询问题工单列表数据
     */
    @RequestMapping(value="questionEndData.html",method=RequestMethod.POST)
    public ModelAndView questionEndData(HttpServletRequest request,PageInfo pageInfo) {
        ModelAndView modelAndView = new ModelAndView("/business/pages/question/questionEndData");
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        PageInfo list = questionFacade.queryQuestionEndList(pageInfo,params);
        modelAndView.addObject("orderList", list);
        modelAndView.addObject("type", params.get("type"));
        return modelAndView;
    }
 
 
 
    /**
     * 查询问题工单总数量
     */
    @RequestMapping(value="questionEndCount.html",method=RequestMethod.POST)
    public void questionEndCount(HttpServletRequest request,HttpServletResponse response) {
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        int count = questionFacade.queryQuestionEndCount(params);
        WebUtil.write(response, String.valueOf(count));
    }
 
 
    /**
     * 问题首页
     * @param model
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value="questionIndex.html")
    public String questionIndex(Model model,HttpServletRequest request,HttpServletResponse response){
        List<Map> cusList = customerFacade.getCusList();
        model.addAttribute("cusList", cusList);
        model.addAttribute("userId", WebUtil.getUserId(request));
        //定义参数Map
        Map<String,String> params = ParamsMapUtil.getParameterMap(request);
        params.put("type","1");
        Map map = questionFacade.getOrderNum(params);
        model.addAttribute("data", map);
        return "/business/pages/question/questionIndex";
    }
 
 
    @RequestMapping(value="questionIndexLoad.html")
    public String questionIndexLoad(Model model,HttpServletRequest request,HttpServletResponse response){
        Map<String, String> params = ParamsMapUtil.getParameterMap(request);
        params.put("userId", WebUtil.getUserId(request));
 
        //工单池问题数量
        int poolCount = questionFacade.questionpoolCount(params);
        //待处理问题数量
        int pendingCount = questionFacade.queryQuestionOrderNodeCount(params);
        //进行中问题数量
        int inHandCount = questionFacade.queryQuestionJxzCount(params);
        //已挂起
        params.put("type", "6");
        int sleepCount = questionFacade.queryQuestionEndCount(params);
 
        model.addAttribute("poolCount",poolCount);
        model.addAttribute("pendingCount",pendingCount);
        model.addAttribute("inHandCount",inHandCount);
        model.addAttribute("sleepCount",sleepCount);
        return "/business/pages/question/questionIndexLoad";
    }
    /**
     * 查询问题工单处理人
     */
    @RequestMapping(value="questionDealer.html",method=RequestMethod.POST)
    public void questionDealer(HttpServletRequest request,HttpServletResponse response) {
        String user = questionFacade.queryQuestionDealer(request);
        WebUtil.write(response, user);
    }
 
    /**
     * 查询问题工单处理人
     */
    @RequestMapping(value="questionGroupDealer.html",method=RequestMethod.POST)
    public void questionGroupDealer(HttpServletRequest request,HttpServletResponse response) {
        String user = questionFacade.queryQuestionGroupDealer(request);
        WebUtil.write(response, user);
    }
 
}