98 Zeilen
3.8 KiB
Plaintext
98 Zeilen
3.8 KiB
Plaintext
${Scripts.src("/zinc/chart/highcharts.js")}
|
||
${Scripts.src("/zinc/chart/exporting.js")}
|
||
${Scripts.src("/zinc/chart/highcharts-zh_CN.js")}
|
||
<script>
|
||
Z.onload(function()
|
||
{
|
||
var orgOrderEndSum = '${orgOrderEndSum}';
|
||
Highcharts.chart('container',
|
||
{
|
||
chart: {plotBackgroundColor: null,plotBorderWidth: null,plotShadow: false,type: 'pie'},
|
||
title: {text: '组织定稿率统计(总定稿量:'+orgOrderEndSum+')'},
|
||
tooltip: {pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'},
|
||
plotOptions:
|
||
{
|
||
pie:
|
||
{
|
||
allowPointSelect: true,
|
||
cursor: 'pointer',
|
||
dataLabels:
|
||
{
|
||
enabled: true,
|
||
format: '<b>{point.name}</b>: {point.percentage:.1f} %',
|
||
style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'}
|
||
}
|
||
}
|
||
},
|
||
series:
|
||
[{
|
||
name: '组织定稿占比',
|
||
colorByPoint: true,
|
||
data:[
|
||
<#for item : pieMap.keySet()>
|
||
{name: '${item}',y: ${pieMap.get(item)}},
|
||
</#for>
|
||
]
|
||
}]
|
||
});
|
||
});
|
||
</script>
|
||
${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, "/designerPerformance.htm")><li onclick="Z.Location.href('designerPerformance.htm');">设计师绩效统计</li></#if>
|
||
<#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>
|
||
<li class="z-active">组织定稿率统计</li>
|
||
<li onclick="Z.Location.href('designOrderTypeStat.htm');">订单类型统计</li>
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
|
||
<#-- 查询条件 -->
|
||
${zhiqim_manager_title("查询条件")}
|
||
<form name="theForm" action="/completeOrgRateStat.htm">
|
||
<table class="z-table z-bordered z-pd6">
|
||
<tr class="z-h40 z-bg-white">
|
||
<td>创建日期:
|
||
<input name="startDate" id="startDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${startDate}"> -
|
||
<input name="endDate" id="endDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120"value="${endDate}">
|
||
<button class="z-mg-l10 z-button ${zmr_color_class}">查询</button>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</form>
|
||
<br>
|
||
|
||
<#-- 分页列表-->
|
||
<table class="z-table z-bordered z-pd6 z-bg-white">
|
||
<tr>
|
||
<td width="50%"><div id="container" class="z-bg-white" style="min-width:400px;height:600px"></div></td>
|
||
<td width="*">
|
||
<table class="z-table z-bordered-line z-pd10 z-bg-white z-text-left" style="text-align:center">
|
||
<tr class="z-bold">
|
||
<td width="20%">组织名称</td>
|
||
<td width="20%">接单量</td>
|
||
<td width="20%">定稿量</td>
|
||
<td width="30%">定稿率</td>
|
||
</tr>
|
||
<#for item : modelList>
|
||
<tr>
|
||
<td>${item.getOrgName()}</td>
|
||
<td>${item.getOrgOrderNum()}</td>
|
||
<td>${item.getOrgOrderEndNum()}</td>
|
||
<td>${item.getOrgEndProportion()}%</td>
|
||
</tr>
|
||
</#for>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
${zhiqim_manager_content_end()} |