[#if orders?? && orders?size>0]
|
[#list orders as order]
|
<div class="order_list">
|
<div class="ol_title">
|
<h3>工单编号:${order.ORDER_CODE}</h3>
|
[#if order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_OPEN_ACCOUNT]
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_REPAIR]
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_ADD]
|
<a href="${base}/business/pages/ciadd/collectionOrderInfo.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_SCRAP]
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_SIMPLE_CHANGE]
|
<a href="${base}/business/pages/change/changeDetail.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_CHANGE]
|
<a href="${base}/business/pages/change/changeDetail.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_EMERGENCY_CHANGE]
|
<a href="${base}/business/pages/change/changeDetail.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_REMIND]
|
<a href="${base}/business/pages/ciremind/orderdeal/ciRemindInfo.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}&nodeId=${order.NODE_ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_HEALTH]
|
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_INCIDENT]
|
<a href="${base}/business/pages/incident/incidentDetail.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_QUESTION ]
|
<a href="${base}/business/pages/question/questionDetail.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[#elseif order.BUSINESSTYPE == Constants.WORKFLOW_BASE_BUSINESS_TYPE_INCIDENT_LOCAL ]
|
<a href="${base}/business/pages/zcyw/zcywDetail.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
|
[/#if]
|
|
<!-- <a><img src="${common_static}/static/ui/images/zc-icon-50.gif" alt="" /></a>
|
<a><img src="${common_static}/static/ui/images/zc-icon-49.gif" alt="" /></a>
|
<a><img src="${common_static}/static/ui/images/zc-icon-48.gif" alt="" /></a> -->
|
</div>
|
<div class="ol_con">
|
<table>
|
<tr>
|
<th rowspan="3">
|
<a>
|
<img src="${common_static}/static/ui/images/fixStart.gif" alt="" />
|
<span>${Constants.mapWORKFLOW_BUSINESS_TYPE_Label(order.BUSINESSTYPE+"")}</span>
|
</a>
|
</th>
|
<td>
|
<em>${Constants.CUSTOMERNAME}:</em>
|
<span class="olc_txt yellow_txt ">${order.CUSTOMER_NAME}</span>
|
<em>当前节点:</em>
|
<span class="olc_txt">${order.CURRENT_NODE_NAME}</span>
|
<em>工单状态:</em>
|
<span class="olc_txt">${Constants.getWORKFLOW_BASE_WFSTATE_Label(order.WFSTATE)}</span>
|
<em>节点状态:</em>
|
<span class="olc_txt">${Constants.getWORKFLOW_NODE_FLOWSTATE_Label(order.FLOWSTATE)}</span>
|
<em>创建时间:</em>
|
<span class="olc_txt">${DateUtil.format("yyyy-MM-dd HH:mm:ss",order.CREATETIME)}</span>
|
<em>创建人名称:</em>
|
<span class="olc_txt last">${order.CREATERNAME}</span>
|
</td>
|
</tr>
|
<tr><td><em>事项:</em>${order.WFNAME}</td></tr>
|
<tr><td><em>内容概述:</em>${order.WFNOTE}</td></tr>
|
</table>
|
</div>
|
</div>
|
[/#list]
|
[#else]
|
<div class="loadpos"><span class="nodata"></span></div>
|
[/#if]
|