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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>健康检查明细表</title>
[#include "/business/pages/include/static.html" /]
[#include "/business/pages/include/header.html" /]
    [#include "/component/excExport.html" /]
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/print.html" /]
 
 
 <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(2,'printDiv');"><span>打印</span></a>
        <a class="common" href="${base}/business/pages/health/healthReport.html?flowId=${RequestParameters.flowId}&orderId=${RequestParameters.orderId}"><span>健康检查服务报告</span></a>
    </div>
    
    
<div class="device" id="printDiv" style="padding:0;border:0;">
  <table border="0" class="reportTable ">
  <tr class="titleTr">
  <td colspan="7">健康检查明细表</td>
  </tr>
  <tr class="nameTr">
      <td colspan="7" align="left" valign="bottom" style="padding:1px;">执行人:${dealerMap.CURRENT_DEALER_NAME}</td>
  </tr>
  <tr>
       <td class="tdbg" width="80px">序号</td>
     <td class="tdbg" width="150px">配置信息</td>
     <td class="tdbg" width="100px">检查项名称</td>
     <td class="tdbg" width="70px">检查结果</td>
     <td class="tdbg" width="150px">执行说明</td>
     <td class="tdbg" width="70px">执行人</td>
     <td class="tdbg" width="200px">运行健康说明及优化建议</td>
   </tr>
   [#if ciList?? && ciList?size>0]
   [#list ciList as ci]
       [#if ci.itemList??&&ci.itemList?size>0]
           [#list ci.itemList as item]
               <tr>
                   [#if item_index==0]
                  <td rowspan="${ci.itemList?size}">${ci_index+1}</td>
                <td rowspan="${ci.itemList?size}">${ci.SEARCHCODE}<br>${ci.CINAME}<br>${ci.POSITION}</td>    
                    [/#if]
                <td>${item.ITEM_NAME}</td>
               <td>${item.ITEM_RESULT}</td>
               <td>${item.ORDER_NOTE}</td>
               <td>${item.USER_NAME}</td>
               [#if item_index==0]
                  <td rowspan="${ci.itemList?size}">${ci.ORDER_NOTE}</td>
                      [/#if]
               </tr>
           [/#list]
           
       [/#if]
   [/#list]
   [/#if]
  </table>
  </div>
 
[#include "/business/pages/include/footer.html" /]
</body>
</html>