first commit
이 커밋은 다음에 포함됨:
@@ -0,0 +1,119 @@
|
||||
<#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
|
||||
<table class="z-table z-bordered z-bg-white z-text-center">
|
||||
<#if console>
|
||||
<tr class="z-h40">
|
||||
<td class="z-text-left z-bold z-px14 z-bg-white" colspan="10" style="padding-left: 10px;">
|
||||
定稿日期:
|
||||
<input name="designerPerformanceBeginDate" id="designerPerformanceBeginDate" onfocus="parent.Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${designerPerformanceBeginDate}"> -
|
||||
<input name="designerPerformanceEndDate" id="designerPerformanceEndDate" onfocus="parent.Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${designerPerformanceEndDate}">
|
||||
<button class="z-mg-l10 z-button ${zmr_color_class}" onclick="doQueryCompleteOrderInfo(1);">查询</button>
|
||||
</td>
|
||||
</tr>
|
||||
<#else>
|
||||
<tr class="z-h40">
|
||||
<td class="z-text-left z-bold z-px14 z-bg-white" colspan="10"> <#if Validates.isNotEmpty(designer)><span class="z-text-red z-bold">[${designer}]</span></#if>订单详情 </td>
|
||||
</tr>
|
||||
</#if>
|
||||
<tr class="z-h40 z-text-center z-bg-gray">
|
||||
<td width="130">订单号</td>
|
||||
<td width="100">设计师</td>
|
||||
<td width="90">设计类型</td>
|
||||
<td width="*">产品</td>
|
||||
<td width="80">修改类型</td>
|
||||
<td width="80">修改前价格</td>
|
||||
<td width="80">修改后价格</td>
|
||||
<td width="80">初始值</td>
|
||||
<td width="80">最新值</td>
|
||||
<td width="80">修改人</td>
|
||||
<td width="90">修改时间</td>
|
||||
</tr>
|
||||
<#if result.size() == 0>
|
||||
<tr valign="middle" class="z-h40 z-text-center z-bg-white">
|
||||
<td colspan="12">暂不存在绩效修改信息</td>
|
||||
</tr>
|
||||
</#if>
|
||||
<#for item : result.list()>
|
||||
<tr align="center" class="z-h40 z-pointer" bgcolor="${zhiqim_manager_tr_bg(item_index)}">
|
||||
<td>${item.getDesignId()}</td>
|
||||
<td>${item.getDesigner()}</td>
|
||||
<td>${Global.get(DesignTypeCache.class).getName(item.getTypeId())}</td>
|
||||
<td>${item.getOrderText()}</td>
|
||||
<#if item.getType() == 1>
|
||||
<td>
|
||||
修改设计份数
|
||||
</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getOldPrice())}</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getNewPrice())}</td>
|
||||
<td>${item.getOldData()}份</td>
|
||||
<td>${item.getNewData()}份</td>
|
||||
</#if>
|
||||
<#if item.getType() == 2>
|
||||
<td>
|
||||
重置佣金
|
||||
</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getOldPrice())}</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getNewPrice())}</td>
|
||||
<td>${item.getOldData()}</td>
|
||||
<td>${item.getNewData()}</td>
|
||||
</#if>
|
||||
<#if item.getType() == 3>
|
||||
<td>
|
||||
修改佣金
|
||||
</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getOldPrice())}</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getNewPrice())}</td>
|
||||
<td>${item.getOldData()}</td>
|
||||
<td>${item.getNewData()}</td>
|
||||
</#if>
|
||||
<#if item.getType() == 4>
|
||||
<td>
|
||||
修改加急费
|
||||
</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getOldPrice())}</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getNewPrice())}</td>
|
||||
<td>${item.getOldData()}</td>
|
||||
<td>${item.getNewData()}</td>
|
||||
</#if>
|
||||
<#if item.getType() == 5>
|
||||
<td>
|
||||
修改稿件类型
|
||||
</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getOldPrice())}</td>
|
||||
<td>${Amounts.toYuanMustRadix(item.getNewPrice())}</td>
|
||||
<#if item.getOldData() == 0>
|
||||
<td>标准自来稿</td>
|
||||
</#if>
|
||||
<#if item.getOldData() == 1>
|
||||
<td>改稿自来稿</td>
|
||||
</#if>
|
||||
<#if item.getOldData() == 2>
|
||||
<td>普通设计</td>
|
||||
</#if>
|
||||
<#if item.getOldData() == 3>
|
||||
<td>资深设计</td>
|
||||
</#if>
|
||||
<#if item.getOldData() == 4>
|
||||
<td>现货</td>
|
||||
</#if>
|
||||
<#if item.getNewData() == 0>
|
||||
<td>标准自来稿</td>
|
||||
</#if>
|
||||
<#if item.getNewData() == 1>
|
||||
<td>改稿自来稿</td>
|
||||
</#if>
|
||||
<#if item.getNewData() == 2>
|
||||
<td>普通设计</td>
|
||||
</#if>
|
||||
<#if item.getNewData() == 3>
|
||||
<td>资深设计</td>
|
||||
</#if>
|
||||
<#if item.getNewData() == 4>
|
||||
<td>现货</td>
|
||||
</#if>
|
||||
</#if>
|
||||
<td>${item.getAddUser()}</td>
|
||||
<td>${Sqls.toDateTimeString(item.getAddTime())}</td>
|
||||
</tr>
|
||||
</#for>
|
||||
</table>
|
||||
${zhiqim_manager_paging_jsMethod(result, "doQueryCompleteOrderInfo")}
|
||||
@@ -0,0 +1,84 @@
|
||||
<script>
|
||||
Z.onload(function(){
|
||||
doQueryDesigner('${designer}');
|
||||
});
|
||||
|
||||
var designer;
|
||||
function doQueryDesigner(designers){
|
||||
designer = designers;
|
||||
doQueryCompleteOrderInfo(1);
|
||||
}
|
||||
|
||||
function doQueryCompleteOrderInfo(page)
|
||||
{
|
||||
var ajax = new Z.Ajax();
|
||||
ajax.setClassName("StatPresenter");
|
||||
ajax.setMethodName("doQueryOrderMeritsInfo");
|
||||
ajax.addParam("page",page);
|
||||
ajax.addParam("beginDate",Z("#beginDate").val());
|
||||
ajax.addParam("endDate",Z("#endDate").val());
|
||||
ajax.addParam("designer",designer);
|
||||
ajax.addParam("query",${queryFlag});
|
||||
ajax.setCallback("result");
|
||||
ajax.setLoading("result");
|
||||
ajax.execute();
|
||||
}
|
||||
</script>
|
||||
${zhiqim_manager_breadcrumb("绩效修改统计")}
|
||||
${zhiqim_manager_content()}
|
||||
|
||||
<#-- 导航栏 -->
|
||||
<div class="z-tabnav-main z-blue z-mg-b20">
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="z-active">绩效修改统计</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<table class="z-table z-bordered z-pd6">
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<form name="theForm" action="/meritsTotal.htm" id="meritsTotal">
|
||||
<table class="z-table">
|
||||
<tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
|
||||
<td class="z-bold z-px14 zi-pd-l5"> 统计查询条件</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="z-table z-bordered z-pd6">
|
||||
<tr class="z-h40 z-bg-white">
|
||||
<td>定稿日期:
|
||||
<input name="beginDate" id="beginDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${beginDate}"> -
|
||||
<input name="endDate" id="endDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${endDate}">
|
||||
<input type="hidden" name="query" id="query" value="1">
|
||||
 设计师:<input name="designer" class="${zmr_color_class} z-input z-w160 z-mg-l4" value="${designer}" maxlength="64" placeholder="设计师">
|
||||
 
|
||||
<button class="z-mg-l10 z-button ${zmr_color_class}" onclick="Z.loading({shadow:true});document.getElementById('meritsTotal').submit();">查询</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="z-h40">
|
||||
<td width="350" valign="top">
|
||||
<table class="z-table z-bordered z-pd6 z-bg-white z-text-center">
|
||||
<tr class="z-h40 z-bold">
|
||||
<td colspan="3" align="left" style="padding-left:15px;">绩效修改总数:${endCount} </td>
|
||||
</tr>
|
||||
<tr class="z-h40">
|
||||
<td width="120">设计师</td>
|
||||
<td width="100">绩效修改次数</td>
|
||||
</tr>
|
||||
<#for item : pageModelList>
|
||||
<tr class="z-h40" bgcolor="${zhiqim_manager_tr_bg(item_index)}" onclick="doQueryDesigner('${item.getDesigner()}')">
|
||||
<td>${item.getDesigner()}</td>
|
||||
<td>${item.getOrderEndCount()}</td>
|
||||
</tr>
|
||||
</#for>
|
||||
</table>
|
||||
</td>
|
||||
<td width="*" id="result" valign="top"></td>
|
||||
</tr>
|
||||
</table>
|
||||
${zhiqim_manager_content_end()}
|
||||
새 이슈에서 참조
사용자 차단