[#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><label>${Constants.UNIT_CONSTANTS}:</label></th><td>${orderFlowInfo.sub_customer_name}</td></tr>
|
<tr class="greybg"><th width="103"><label>工单名称:</label></th><td width="351">${orderFlowInfo.WFNAME}</td></tr>
|
<tr><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 class="greybg"><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]
|