designOrderCountStat.zml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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('draftStatusOrderStat.htm');">未完成订单统计</li>
  8. <li onclick="Z.Location.href('draftOrderConvert.htm');">初稿统计</li>
  9. <!-- <li onclick="Z.Location.href('completeOrderConvert.htm');">定稿统计</li> -->
  10. <li onclick="Z.Location.href('completeOrderDetail.htm');">定稿统计</li>
  11. <#if ZmrPathRule.check(request, "/designFinalizeOrgCase.htm")><li onclick="Z.Location.href('designFinalizeOrgCase.htm');">组织定稿统计</li></#if>
  12. <#if ZmrPathRule.check(request, "/completeDesignRateStat.htm")><li onclick="Z.Location.href('completeDesignRateStat.htm');">设计师定稿率统计</li></#if>
  13. <#if ZmrPathRule.check(request, "/completeOrgRateStat.htm")><li onclick="Z.Location.href('completeOrgRateStat.htm');">组织定稿率统计</li></#if>
  14. <li onclick="Z.Location.href('draftOrderTimeliness.htm');">初稿时效统计</li>
  15. <li onclick="Z.Location.href('draftOrderOrgTimeliness.htm');">初稿时效统计(组织)</li>
  16. <li onclick="Z.Location.href('completeOrderTimeliness.htm');">定稿时效统计</li>
  17. <li class="z-active">设计总订单数量统计</li>
  18. <#if ZmrPathRule.check(request, "/draftOrderTypeTimeliness.htm")><li onclick="Z.Location.href('draftOrderTypeTimeliness.htm');">初稿产品时效统计</li></#if>
  19. <#if ZmrPathRule.check(request, "/completeOrderTypeTimeliness.htm")><li onclick="Z.Location.href('completeOrderTypeTimeliness.htm');">定稿产品时效统计</li></#if>
  20. </ul>
  21. </nav>
  22. </div>
  23. <#-- 查询条件 -->
  24. ${zhiqim_manager_title("查询条件")}
  25. <form name="theForm">
  26. <table class="z-table z-bordered z-pd6 z-bg-white z-mg-b20">
  27. <tr>
  28. <td width="25%">录单时间:
  29. <input name="startDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${startDate}"> -
  30. <input name="endDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${endDate}">
  31. </td>
  32. <td colspan="3">
  33. <button class="z-button z-large z-w120 z-mg-r15 ${zmr_color_class}">查询</button>
  34. <button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button>
  35. </td>
  36. </tr>
  37. </table>
  38. </form>
  39. <#var typeList = DesignTypeDao.listAll()/>
  40. <table class="z-table z-bordered z-h40-tr z-pd6 z-bg-white z-text-center">
  41. ${zhiqim_manager_tr_title(13, "设计总订单数量统计")}
  42. <tr bgcolor="${zmr_thead_bgcolor}">
  43. <td width="150">日期</td>
  44. <td width="150">总设计订单</td>
  45. <#if Validates.isNotEmpty(typeList)>
  46. <#for type : typeList>
  47. <#if type_index lte 9><td width="150">${type.getPrdTypeName()}</td></#if>
  48. </#for>
  49. </#if>
  50. <td width="150">其他</td>
  51. </tr>
  52. ${zhiqim_manager_tr_no_record(list, 13, "设计总订单数量统计暂无信息")}
  53. <#for item : list>
  54. <#var typeMap = item.getTypeMap()/>
  55. <tr>
  56. <td>${item.getDate()}</td>
  57. <td>${item.getSumCount()}</td>
  58. <#if Validates.isNotEmpty(typeList)>
  59. <#for type : typeList>
  60. <#if type_index lte 9><td>${typeMap.get(type.getTypeId())}</td></#if>
  61. </#for>
  62. </#if>
  63. <td>${item.getSumCount() - item.getElseCount()}</td>
  64. </tr>
  65. </#for>
  66. </table>
  67. ${zhiqim_manager_list(list.size())}
  68. ${zhiqim_manager_content_end()}