| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <script>
- </script>
- ${zhiqim_manager_breadcrumb("订单预约统计")}
- ${zhiqim_manager_content()}
- <#-- 导航栏 -->
- <div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
- <nav>
- <ul>
- <li class="z-active">组员预约情况</li>
- <li onclick="Z.L.href('subscribeStatAll.htm');">组织预约情况</li>
- </ul>
- </nav>
- </div>
- <#-- 列表 -->
- <table class="z-table zi-bd zi-bd-b-none z-pd5 z-bg-white">
- <tr class="z-h40">
- <td width="*" class="z-bold z-px15 z-text-left">当前组织:${currentOrgName} 设计师总人数:${operatorNum} 设计师预约总人数:${subscribeOperatorNum} 预约总单量:${subscribeSum} 接单总单量:${finishSum}</td>
- </tr>
- </table>
- <table class="z-table">
- <tr>
- <td width="400" valign="top">
- <table class="z-table z-bordered z-bg-white z-text-center">
- <tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td colspan="7">选中日期:${selectedDay}</td>
- </tr>
- <tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td width="14%">周日</td>
- <td width="14%">周一</td>
- <td width="14%">周二</td>
- <td width="14%">周三</td>
- <td width="14%">周四</td>
- <td width="14%">周五</td>
- <td width="14%">周六</td>
- </tr>
- <#for item : list>
- <#if item_index % 7 == 0>
- <tr class="">
- </#if>
- <td onclick="Z.L.href('subscribeStat.htm?dutyTime=${item.getDutyTime()}')" class="" <#if item.getDutyMonth() != "currMonth">style="background-color:#f5f5f5;"</#if> <#if item.getDutyTime() == selectedDay>style="border: 1px solid #00a2eb;"</#if>>
- <div class="z-pd3" style="line-height:2;text-align:left;">
- <span style="margin:0px 0px 0px 10px; color:#bbbbbb;">${item.getDay()}号 </span>
- <#if item.getDutyTime() == today>
- <span class="z-float-right" style="width:8px;height:8px;border-radius:50%;background-color:#14DE00;"></span>
- </#if>
- </div>
- </td>
- <#if item_index % 7 == 6>
- </tr>
- </#if>
- </#for>
- </table>
- </td>
- <td width="10"></td>
- <td width="*" id="result" valign="top">
- <table class="z-table z-bordered z-h40-tr z-pd6 z-bg-white z-text-center">
- <tr bgcolor="${zmr_thead_bgcolor}">
- <td width="30%">设计师名称</td>
- <td width="10%">预约单量</td>
- <td width="10%">接单数量</td>
- <td width="10%">定稿数量</td>
- <td width="10%">接单时长</td>
- <td width="*">状态</td>
- </tr>
- <#for item : subscribeDesignerQuotaRecordList>
- <tr ${zhiqim_manager_tr_onmouse()}>
- <td>${item.getOperatorCode()}</td>
- <td>${item.getSubscribeNum()}</td>
- <td>${item.getFinishedNum()}</td>
- <td>${item.getDingGaoSum()}</td>
- <td><#if item.getJieDanOnlineTime()/60 gt 0>${item.getJieDanOnlineTime()/60}小时</#if>${item.getJieDanOnlineTime()%60}分钟</td>
- <td><#if item.getSubscribeState() ==2 >已预约</#if><#if item.getSubscribeState() !=2 >未预约</#if></td>
- </tr>
- </form>
- </#for>
- </table>
- </tb>
- </tr>
- </table>
- ${zhiqim_manager_content_end()}
|