| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- ${zhiqim_manager_breadcrumb("设计总订单数量统计")}
- ${zhiqim_manager_content()}
- <#-- 导航栏 -->
- <div class="z-tabnav-main z-blue z-mg-b20">
- <nav>
- <ul>
- <li onclick="Z.Location.href('draftStatusOrderStat.htm');">未完成订单统计</li>
- <li onclick="Z.Location.href('draftOrderConvert.htm');">初稿统计</li>
- <!-- <li onclick="Z.Location.href('completeOrderConvert.htm');">定稿统计</li> -->
- <li onclick="Z.Location.href('completeOrderDetail.htm');">定稿统计</li>
- <#if ZmrPathRule.check(request, "/designFinalizeOrgCase.htm")><li onclick="Z.Location.href('designFinalizeOrgCase.htm');">组织定稿统计</li></#if>
- <#if ZmrPathRule.check(request, "/completeDesignRateStat.htm")><li onclick="Z.Location.href('completeDesignRateStat.htm');">设计师定稿率统计</li></#if>
- <#if ZmrPathRule.check(request, "/completeOrgRateStat.htm")><li onclick="Z.Location.href('completeOrgRateStat.htm');">组织定稿率统计</li></#if>
- <li onclick="Z.Location.href('draftOrderTimeliness.htm');">初稿时效统计</li>
- <li onclick="Z.Location.href('draftOrderOrgTimeliness.htm');">初稿时效统计(组织)</li>
- <li onclick="Z.Location.href('completeOrderTimeliness.htm');">定稿时效统计</li>
- <li class="z-active">设计总订单数量统计</li>
- <#if ZmrPathRule.check(request, "/draftOrderTypeTimeliness.htm")><li onclick="Z.Location.href('draftOrderTypeTimeliness.htm');">初稿产品时效统计</li></#if>
- <#if ZmrPathRule.check(request, "/completeOrderTypeTimeliness.htm")><li onclick="Z.Location.href('completeOrderTypeTimeliness.htm');">定稿产品时效统计</li></#if>
- </ul>
- </nav>
- </div>
- <#-- 查询条件 -->
- ${zhiqim_manager_title("查询条件")}
- <form name="theForm">
- <table class="z-table z-bordered z-pd6 z-bg-white z-mg-b20">
- <tr>
- <td width="25%">录单时间:
- <input name="startDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${startDate}"> -
- <input name="endDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${endDate}">
- </td>
- <td colspan="3">
- <button class="z-button z-large z-w120 z-mg-r15 ${zmr_color_class}">查询</button>
- <button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button>
- </td>
- </tr>
- </table>
- </form>
- <#var typeList = DesignTypeDao.listAll()/>
- <table class="z-table z-bordered z-h40-tr z-pd6 z-bg-white z-text-center">
- ${zhiqim_manager_tr_title(13, "设计总订单数量统计")}
- <tr bgcolor="${zmr_thead_bgcolor}">
- <td width="150">日期</td>
- <td width="150">总设计订单</td>
- <#if Validates.isNotEmpty(typeList)>
- <#for type : typeList>
- <#if type_index lte 9><td width="150">${type.getPrdTypeName()}</td></#if>
- </#for>
- </#if>
- <td width="150">其他</td>
- </tr>
- ${zhiqim_manager_tr_no_record(list, 13, "设计总订单数量统计暂无信息")}
- <#for item : list>
- <#var typeMap = item.getTypeMap()/>
- <tr>
- <td>${item.getDate()}</td>
- <td>${item.getSumCount()}</td>
- <#if Validates.isNotEmpty(typeList)>
- <#for type : typeList>
- <#if type_index lte 9><td>${typeMap.get(type.getTypeId())}</td></#if>
- </#for>
- </#if>
- <td>${item.getSumCount() - item.getElseCount()}</td>
- </tr>
- </#for>
- </table>
- ${zhiqim_manager_list(list.size())}
- ${zhiqim_manager_content_end()}
|