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
[#include "/component/excExport.html" /]
[#if report??]
<script type="text/javascript">
 
</script>
    
 
<div class="check_btn clearfix" style="margin-right: 27px;">
    [@excExp id="reportDiv" name="工程师事件处理情况统计" /]
    <a class="common print" href="javascript:printA4(2,'reportDiv');"><span>打印</span></a>
</div>
<div id="reportDiv">
    <table border="0" class="reportTable tablew" id="reportTable">
        <tr  class="titleTr">
            <td colspan="${4+report.slaList?size}">工程师事件处理情况统计</td>
        </tr>
        <tr class="nameTr">
            <td colspan="2" align="left" valign="bottom" style="padding:1px;">${Constants.CUSTOMER_CONSTANTS}名称:${RequestParameters.cusName}</td>
            <td colspan="3" style="text-align:right;">统计日期:${DateUtil.format("yyyy/MM/dd",RequestParameters.beginDay)}-${DateUtil.format("yyyy/MM/dd",RequestParameters.endDay)}</td>
        </tr>
 
        <tr>
            <td width="8%" class="tdbg">姓名</td>
            [#if report.slaList??&&report.slaList?size>0]
                [#list report.slaList as sla]
                    <td width="8%" class="tdbg">${sla.LEVEL_NAME}</td>
                [/#list]
            [/#if]
            <td width="8%" class="tdbg">合计</td>
            <td width="8%" class="tdbg">满意度</td>
            <td width="8%" class="tdbg">一次解决率</td>
        </tr>
        
        [#if report.userList??&&report.userList?size>0]
            [#list report.userList as user]
                <tr>
                    <td>${user.zsxm}</td>
                    [#if user.slaList??&&user.slaList?size>0]
                        [#list user.slaList as sla]
                            <td>${sla.num}</td>
                        [/#list]
                    [/#if]
                    <td>${user.sum}</td>
                    <td>${user.myf}</td>
                    <td>${user.jjl}%</td>
                </tr>
            [/#list]
        [#else]
            <tr>
                <td colspan="${4+report.slaList}">暂无数据</td>
            </tr>
        [/#if]
 
    </table>
 
[/#if]
<div id="reportDiv">