timeoutOrderNear.zml 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. ${zhiqim_manager_breadcrumb("快超时订单")}
  2. ${zhiqim_manager_content()}
  3. <#-- 导航栏 -->
  4. <div class="z-tabnav-main z-blue z-mg-b20">
  5. <nav>
  6. <ul>
  7. <!--<li onclick="Z.Location.href('chargeOrder.htm');">主管审核</li>-->
  8. <li class="z-active">快超时订单</li>
  9. <#if ZmrPathRule.check(request, "/timeoutOrderToday.htm")><li onclick="Z.Location.href('timeoutOrderToday.htm');">当日超时订单</li></#if>
  10. <#if ZmrPathRule.check(request, "/timeoutOrderHistory.htm")><li onclick="Z.Location.href('timeoutOrderHistory.htm');">历史超时订单</li></#if>
  11. <#if ZmrPathRule.check(request, "/notTimeoutCompleteOrderHistory.htm")><li onclick="Z.Location.href('notTimeoutCompleteOrderHistory.htm');">时效绩效</li></#if>
  12. <#if ZmrPathRule.check(request, "/timeoutCompleteOrderHistory.htm")><li onclick="Z.Location.href('timeoutCompleteOrderHistory.htm');">定稿超时列表</li></#if>
  13. <#if ZmrPathRule.check(request, "/timeoutOrderHistoryStat.htm")><li onclick="Z.Location.href('timeoutOrderHistoryStat.htm');">初稿超时折线图</li></#if>
  14. <#if ZmrPathRule.check(request, "/timelinessOrgStat.htm")><li onclick="Z.Location.href('timelinessOrgStat.htm');">组织初稿时效</li></#if>
  15. </ul>
  16. </nav>
  17. </div>
  18. <#-- 查询条件 -->
  19. ${zhiqim_manager_title("查询条件")}
  20. <form name="theForm">
  21. <table class="z-table z-bordered z-pd6 z-bg-white">
  22. <tr class="z-h40">
  23. <td width="20%">设计师名称:
  24. <select name="designer" class="z-select z-w200" data-role="z-select-search" data-class="${zmr_color_class}">
  25. <option value="">全部</option>
  26. <#for item : designerList>
  27. <option value="${item.getOperatorCode()}" <#if item.getOperatorCode() == designer>selected</#if>>${item.getOperatorCode()}</option>
  28. </#for>
  29. </select>
  30. </td>
  31. <td width="20%">订单状态:
  32. <select name="hasDesigner" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  33. <option value="">全部</option>
  34. <option value="0" <#if 0 == hasDesigner>selected</#if>>未领取</option>
  35. <option value="1" <#if 1 == hasDesigner>selected</#if>>已有设计师</option>
  36. </select>
  37. </td>
  38. <td width="20%">选择行业:
  39. <select name="industryId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  40. <option value="">全部</option>
  41. <#for item : Global.get(DesignIndustryCache.class).getIndustryList()>
  42. <option value="${item.getIndustryId()}" <#if item.getIndustryId() == industryId>selected</#if>>${item.getIndustryName()}</option>
  43. </#for>
  44. </select>
  45. </td>
  46. <td width="20%">产品类型:<select name="typeId" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
  47. <option value="">全部</option>
  48. <#for item : designTypeList>
  49. <option value="${item.getTypeId()}" <#if typeId == item.getTypeId()>selected</#if>>${item.getTypeName()}</option>
  50. </#for>
  51. </select>
  52. </td>
  53. <td width="*"><button class="z-button z-large z-w100 ${zmr_color_class}" >查询</button>&nbsp;&nbsp;&nbsp;&nbsp;<button class="z-button z-large" type="button" onclick="Z.Forms.clearForm(this.form)">清空</button></td>
  54. </tr>
  55. </table>
  56. </form>
  57. <#-- 分页列表 -->
  58. <div class="z-mg-t20">
  59. <table class="z-table z-bordered z-bg-white z-text-center">
  60. <tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
  61. <td width="150">订单ID</td>
  62. <td width="150">组织名称</td>
  63. <td width="*">订单信息</td>
  64. <td width="100">行业</td>
  65. <td width="200">旺旺名</td>
  66. <td width="150">录单时间</td>
  67. <td width="150">领单时间</td>
  68. <td width="150">进度备注</td>
  69. <td width="100">倒计时</td>
  70. <td width="100">设计师</td>
  71. </tr>
  72. <#for item : pageResult.list()>
  73. <tr class="z-pointer z-h40" ${zhiqim_manager_tr_onmouse()} <#if item_index % 2 == 0>bgcolor="#f3fdfc"</#if>>
  74. <td>${item.getDesignId()}</td>
  75. <td>${ZmrOrgDao.getOrgName(request, item.getOrgId())}</td>
  76. <td>${item.getOrderText()}</td>
  77. <td>${Global.get(DesignIndustryCache.class).getIndustryName(item.getIndustryId())}</td>
  78. <td>${item.getBuyerNick()}</td>
  79. <td>${Sqls.toDateTimeString(item.getCreateTime())}</td>
  80. <td>${Sqls.toDateTimeString(item.getDesignReceiveTime())}</td>
  81. <td>${progressNoteMap.get(item.getDesignId())}</td>
  82. <td><span class="z-text-green">${item.getCountDown()} 分钟</span></td>
  83. <td>${item.getDesigner()}</td>
  84. </tr>
  85. </#for>
  86. <#if pageResult.total() == 0>
  87. ${zhiqim_manager_no_record(10, "暂时没有快超时订单信息")}
  88. </#if>
  89. </table>
  90. </div>
  91. ${zhiqim_manager_paging(pageResult, "timeoutOrderNear.htm")}
  92. ${zhiqim_manager_content_end()}