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
[#macro flowInfo orderFlowInfo = {} ]
    <div class="fsm_right" id="fsmRight">
        <div class="fsmr_basicinfo satisfaction">
            <table>
                <tr class="greybg"><th><label>${Constants.CUSTOMER_CONSTANTS}名称:</label></th><td>${orderFlowInfo.customer_name}</td></tr>
                <tr><th width="103"><label>工单名称:</label></th><td width="351">${orderFlowInfo.WFNAME}</td></tr>
                <tr class="greybg"><th><label>工单状态:</label></th><td><span class="blue_txt">
                [#if orderFlowInfo??]
                    [#if orderFlowInfo.flowState==1]
                        ${orderFlowInfo.nodeName}
                        [#if orderFlowInfo.nodeState == 1]
                            (待响应)
                        [#elseif orderFlowInfo.nodeState == 2]
                            (处理中)
                        [/#if]
                    [#elseif orderFlowInfo.flowState==2]
                        已完成
                    [#elseif orderFlowInfo.flowState==3]
                        已关闭
                    [/#if]
                [/#if]
                </span></td></tr>
               
                <tr><th><label>工单类型:</label></th><td>${Constants.mapWORKFLOW_BUSINESS_TYPE_Label(orderFlowInfo.BUSINESSTYPE)}</td></tr>
                [#if orderFlowInfo??]
                    [#if orderFlowInfo.flowState==1]
                        <tr><th><label>当前环节处理人:</label></th><td>
                         [#if orderFlowInfo.dealType==2]
                            ${orderFlowInfo.userName}(${orderFlowInfo.telphone})
                        [#elseif orderFlowInfo.dealType==1]
                            ${orderFlowInfo.roleName}(工作组)
                        [/#if]
                        </td></tr>
                    [/#if]
                [/#if]
            </table>
        </div>
    </div> 
[/#macro]