| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <#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")}
|