cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!doctype html>
<html class="no-js">
<head>
 
[#include "/business/pages/include/static.html" /]
[#include "/business/pages/include/print.html" /]
    [#include "/component/excExport.html" /]
 
<meta charset="utf-8">
<title>问题处理服务报告</title>
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
 
[#if questionMap??]
 <div class="check_btn clearfix">
        <a class="common close" href="javascript:window.close();"><span>关闭</span></a>
         [@excExp id="printDiv" name="问题处理服务报告" /]
        <a class="common print" href="javascript:printA4(1,'printDiv');"><span>打印</span></a>
    </div>
<div class="device" id="printDiv" style="padding:0;border:0;">
<table border="0" class="reportTable" id="reportTable">
    <tr class="titleTr">
      <td colspan="12">问题处理服务报告</td>
    </tr>
    
    <tr class="nameTr">
      <td  colspan="6" align="left" valign="bottom" style="padding:1px;">${Constants.CUSTOMER_CONSTANTS}名称:${questionMap.CUSTOMER_NAME}</td>
      <td  colspan="6" style="text-align: right;">编号:${questionMap.ORDER_CODE}</td>
      
      </tr>
    
    
    <tr>
      <td colspan="2" class="tdbg" width="20%">问题标题:</td>
      <td colspan="10">${questionMap.NAME}</td>
    </tr>
   
       <tr>
      <td colspan="2" class="tdbg" width="20%">问题来源:</td>
      <td colspan="2" width="16%">${questionMap.SOURCE_NAME}</td>
      <td colspan="2" class="tdbg" width="15%">优先级:</td>
      <td colspan="2" width="16%">${questionMap.PRIORITY_NAME}</td>
      <td colspan="2" class="tdbg" width="15%">影响程度:</td>
      <td colspan="2" width="16%">${questionMap.INFLUENCE_NAME}</td>
    </tr>
    <tr>
      <td colspan="2" class="tdbg">问题状态:</td>
      <td colspan="2">${questionMap.STATE}</td>
 
        [#if questionMap.WFSTATE==3]
         <td colspan="2" class="tdbg">取消类型:</td>
        [#else]
        <td colspan="2" class="tdbg">解决类型:</td>
        [/#if]
      <td colspan="2">${questionMap.RESOLVE_TYPE_NAME}</td>
      <td colspan="2" class="tdbg">期望完成时间:</td>
      <td colspan="2">${DateUtil.format("yyyy-MM-dd",questionMap.WANT_DEAL_TIME)}</td>
    </tr>
    <tr>
      <td colspan="2" class="tdbg">登记人:</td>
      <td colspan="2">${questionMap.CREATE_USER_NAME}</td>
      <td colspan="2" class="tdbg">联系方式:</td>
      <td colspan="2">${questionMap.SJHM}</td>
      <td colspan="2" class="tdbg">登记时间:</td>
      <td colspan="2">${DateUtil.format("yyyy-MM-dd",questionMap.CREATE_TIME)}</td>
    </tr>
    <tr>
      <td colspan="2" class="tdbg">受理人:</td>
      <td colspan="2">${questionMap.SHOULI_USERNAME}</td>
      <td colspan="2" class="tdbg">受理时间:</td>
      <td colspan="2">${DateUtil.format("yyyy-MM-dd",questionMap.SHOULI_TIME)}</td>
      <td colspan="2" class="tdbg">受理耗时:</td>
      <td colspan="2">[#if questionMap.SHOULI_USE_TIME??]${questionMap.SHOULI_USE_TIME}分钟[/#if]</td>
    </tr>
    <tr>
      <td colspan="2" class="tdbg">解决人:</td>
      <td colspan="2">${questionMap.RESOLVE_USER_NAME}</td>
      <td colspan="2" class="tdbg">解决时间:</td>
      <td colspan="2">${DateUtil.format("yyyy-MM-dd",questionMap.RESOLVE_TIME)}</td>
      <td colspan="2" class="tdbg">解决耗时:</td>
      <td colspan="2">[#if questionMap.FINISH_USE_TIME??]${questionMap.FINISH_USE_TIME}分钟[/#if]</td>
    </tr>
    <tr>
      <td colspan="2" class="tdbg">服务目录:</td>
      <td colspan="10">${questionMap.FIRST_CATEGORY_NAME} > ${questionMap.SECOND_CATEGORY_NAME} > ${questionMap.THIRD_CATEGORY_NAME}</td>
    </tr>
    <tr>
        <td colspan="12" class="nopbot" >问题描述:</td>
    </tr>
    <tr>
        <td class="noptobo" colspan="12">
            ${questionMap.DESCRIP}
        </td>
    </tr>
    [#if questionMap.WFSTATE==3]
    <tr>
        <td colspan="12" class="nopbot" >取消描述:</td>
    </tr>
    <tr>
        <td class="noptobo" colspan="12">
            ${questionMap.DEAL_NOTE}
        </td>
    </tr>
    </tr>
    [#else]
    <tr>
        <td colspan="12" class="nopbot" >根本原因:</td>
    </tr>
    <tr>
        <td class="noptobo" colspan="12">
            ${questionMap.TRUE_REASON}
        </td>
    </tr>
    <tr>
        <td colspan="12" class="nopbot" >解决方案:</td>
    </tr>
    <tr>
        <td class="noptobo" colspan="12">
            ${questionMap.RESOLVE}
        </td>
    </tr>
    <tr>
        <td colspan="12" class="nopbot" >优化建议:</td>
    </tr>
    <tr>
        <td class="noptobo" colspan="12">
            ${questionMap.SUGGEST}
        </td>
    </tr>
    <tr>
        <td colspan="12" class="nopbot" >实施步骤:</td>
    </tr>
    <tr>
        <td class="noptobo" colspan="12">
            ${questionMap.SSBZ}
        </td>
    </tr>
 
    [/#if]
 
 
    <tr>
      <td class="tdbg"  [#if orderList??&&orderList?size>0]rowspan="${orderList?size+1}"[#else]rowspan="2"[/#if]>关联工单</td>
      <td >序号</td>
      <td colspan="2" class="tdbg" >工单编号</td>
      <td colspan="4" class="tdbg" >工单名称</td>
      <td colspan="2" class="tdbg" >工单类型</td>
      <td colspan="2" class="tdbg" >工单状态</td>
    </tr>
    [#if orderList?? && orderList?size>0]
        [#list orderList as order]
        <tr>
          <td >${order_index+1}</td>
          <td colspan="2" >${order.ORDER_CODE}</td>
          <td colspan="4" >${order.WFNAME}</td>
          <td colspan="2" >${order.BUSINESSTYPE}</td>
          <td colspan="2">${order.WFSTATE}</td>
        </tr>
        [/#list]
    [#else]
         <tr>
          <td >&nbsp;</td>
          <td colspan="2" ></td>
          <td colspan="4" ></td>
          <td colspan="2" ></td>
          <td colspan="2"></td>
        </tr>
    [/#if]
    <tr>
      <td class="tdbg"  [#if ciList??&&ciList?size>0]rowspan="${ciList?size+1}"[#else]rowspan="2"[/#if]>关联配置</td>
      <td >序号</td>
      <td colspan="2" class="tdbg" >搜索码</td>
      <td colspan="3" class="tdbg" >配置名称</td>
      <td colspan="5" class="tdbg" >存放位置</td>
    </tr>
    [#if ciList?? && ciList?size>0]
        [#list ciList as ci]
        <tr>
          <td >${ci_index+1}</td>
          <td colspan="2" >${ci.SEARCHCODE}</td>
          <td colspan="3" >${ci.CINAME}</td>
          <td colspan="5" >${ci.POSITION}</td>
        </tr>
    [/#list]
    [#else]
        <tr>
          <td >&nbsp;</td>
          <td colspan="2" ></td>
          <td colspan="3" ></td>
          <td colspan="4" ></td>
        </tr>
    [/#if]
    <tr>
      <td class="tdbg"  [#if fileList??&&fileList?size>0]rowspan="${fileList?size+1}"[#else]rowspan="2"[/#if]>关联文档</td>
      <td >序号</td>
      <td colspan="6" class="tdbg" >文档名称</td>
      <td colspan="2" class="tdbg" >格式</td>
      <td colspan="2" class="tdbg" >大小</td>
    </tr>
    [#if fileList?? && fileList?size>0]
        [#list fileList as file]
        <tr>
          <td >${file_index+1}</td>
          <td colspan="6">${file.FILE_NAME}</td>
          <td colspan="2">${file.FILE_FORMAT}</td>
          <td colspan="2">${file.FILE_SIZE}</td>
        </tr>
    [/#list]
    [#else]
        <tr>
          <td >&nbsp;</td>
          <td colspan="6" ></td>
          <td colspan="2" ></td>
          <td colspan="2"></td>
        </tr>
    [/#if]
</table>
</div>
[/#if]
[#include "/business/pages/include/footer.html" /]
</body>
</html>