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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>驻场服务满意度调查详情</title>
<link rel="stylesheet" type="text/css" href="${common_static}/static/ui/css/printa4-table.css"/>
 
</head>
 
<body class="fullscreen">
 <div class="device" id="printDiv" style="padding:0;border:0;">
        <table  border="0" class="reportTable" >
                  <tr class="titleTr">
                  <td   colspan="6">驻场服务监督卡</td>
                </tr>
               <tr class="nameTr">
                   <td   colspan="2" align="left">${Constants.CUSTOMER_CONSTANTS}名称:${customerMap.CUSTOMER_NAME}</td>
                   <td   colspan="2" style="text-align:center;">${Constants.UNIT_CONSTANTS}:[#if customerMap.SUB_CUSTOMER_NAME??]${customerMap.SUB_CUSTOMER_NAME}[#else]-[/#if]</td>
                   <td   colspan="2"  nowrap="nowrap" style="text-align:right;">驻场月份:${DateUtil.format("yyyy年MM月",customerMap.CARD_MONTH)}</td>
                </tr>
                <tr>
                  <td align="center" colspan="1"  >监督${Constants.CUSTOMER_CONSTANTS}</td>
                  <td align="center" colspan="3"  >监督内容</td>
                  <td align="center" colspan="2"   align="center">评价</td>
                </tr>
                 [#list zcitem.itemYjList as card]
                 [#list card.itemList as item]
                 [#if item_index == 0]
                 <tr>
                 <td align="center" rowspan="${card.ROWSPAN}" colspan="1"  >${card.ITEM_NAME}</td>
                  <td align="left" colspan="3"  >${item.ITEM_NAME}</td>
                  <td align="center" colspan="2"  >
                  [#list item.EVALUATION as eva]
                   <span style="vertical-align:text-top;margin:0px 3px 0px 7px;">
                   [#if eva.check == 1]
                   <img src="${common_static}/static/ui/images/dayprint-y.gif"/>
                   [#else]
                   <img src="${common_static}/static/ui/images/dayprint-m.gif"/>
                   [/#if]
                   </span>${eva.EVA_NAME}
                  [/#list]
                  </td>
                  </tr>
                  [#else]
                  <tr>
                  <td align="left" colspan="3"  >${item.ITEM_NAME}</td>
                  <td align="center" colspan="2"  >
                  [#list item.EVALUATION as eva]
                   <span style="vertical-align:text-top;margin:0px 3px 0px 7px;">
                   [#if eva.check == 1]
                   <img src="${common_static}/static/ui/images/dayprint-y.gif"/>
                   [#else]
                   <img src="${common_static}/static/ui/images/dayprint-m.gif"/>
                   [/#if]
                   </span>${eva.EVA_NAME}
                  [/#list]
                  </td>
                  </tr>
                  [/#if]
                  [/#list]
                
                [/#list]
                <tr>
                  <td height="80" align="left" colspan="6" width="15%" style="vertical-align:top;"  >客户评价:<br/>${StringUtil.str2Html(customerMap.SUGGESTION)}
                  </td>
                </tr>
                <tr>
                  <td height="80" align="left" colspan="6" width="15%" style="vertical-align:top;"  >审核意见:<br/>${customerMap.SHENP_NOTE}
                  </td>
                 </tr>
                <tr>
                  <td align="center"    width="10%">客户签字</td>
                  <td align="center" colspan="2"   width="40%">${customerMap.CUSTOMER_CONTACT_NAME}</td>
                  <td align="center"    width="10%">日期</td>
                  <td align="center" colspan="2"   width="40%">${DateUtil.format("yyyy-MM-dd",customerMap.SUBMIT_TIME)}</td>
                </tr>
                 <tr>
                  <td align="center"   >工程师签字</td>
                  <td align="center" colspan="2"  >${customerMap.USER_NAME}</td>
                  <td align="center"   >日期</td>
                  <td align="center" colspan="2"  >${DateUtil.format("yyyy-MM-dd",customerMap.SUBMIT_TIME)}</td>
                </tr>
                  <tr>
                  <td align="center" >调查人</td>
                  <td align="center" colspan="2" >${customerMap.INVEST_USER_NAME}</td>
                  <td align="center" >日期</td>
                  <td align="center" colspan="2" >${DateUtil.format("yyyy-MM-dd",customerMap.INVEST_TIME)}</td>
                </tr>
                 <tr>
                  <td height="80" align="left" colspan="6" width="15%" style="vertical-align:top;"  >调查备注:<br/>${StringUtil.str2Html(customerMap.SATIS_NOTE)}</td>
                </tr>
              </table>
        
    </div>
</body>
 
<script type="text/javascript">
    var busId = '${busId}';                     
    
    function zcImage(){
    window.top.openDialog("0","报表影印",
                         {},
                         {"width":80,"height":80},
                         [],
                         "${base}/business/pages/satisfaction/zcImage.html?busId="+busId);
    }
    
    
    </script>
</html>