| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <#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>订单详情 
- <button class="z-mg-l10 z-button" onclick="exportDatas();"><i class="z-font z-download"></i>导出</button>
-
- </td>
-
- </tr>
- </#if>
- <tr class="z-h40 z-text-center z-bg-gray">
- <td width="130">订单号</td>
- <td width="110">旺旺号</td>
- <td width="100">设计师</td>
- <td width="110">店铺</td>
- <td width="90">设计类型</td>
- <td width="*">产品</td>
- <td width="80">设计费份数</td>
- <td width="90">领单时间</td>
- <td width="90">定稿时间</td>
- <td width="110">订单绩效</td>
- </tr>
- <#if result.size() == 0>
- <tr valign="middle" class="z-h40 z-text-center z-bg-white">2023-0
- <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.getBuyerNick()}</td>
- <td>${item.getDesigner()}</td>
- <td>${item.getShopNick()}</td>
- <td>${DraftConstants.get(item.getDraftType())}</td>
- <td>${item.getOrderText()}</td>
- <td>${item.getDesignCopies()}</td>
- <td>${Sqls.toDateTimeString(item.getDesignReceiveTime())}</td>
- <td>${Sqls.toDateTimeString(item.getDesignEndTime())}</td>
- <td>${CalculationUtil.getDesignerOrderPerformance(item,designer)}</td>
- </tr>
- </#for>
- </table>
- ${zhiqim_manager_paging_jsMethod(result, "doQueryCompleteOrderInfo")}
|