designerCompleteOrderInfo.zml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
  2. <table class="z-table z-bordered z-bg-white z-text-center">
  3. <#if console>
  4. <tr class="z-h40">
  5. <td class="z-text-left z-bold z-px14 z-bg-white" colspan="10" style="padding-left: 10px;">
  6. 定稿日期:
  7. <input name="designerPerformanceBeginDate" id="designerPerformanceBeginDate" onfocus="parent.Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${designerPerformanceBeginDate}"> -
  8. <input name="designerPerformanceEndDate" id="designerPerformanceEndDate" onfocus="parent.Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${designerPerformanceEndDate}">
  9. <button class="z-mg-l10 z-button ${zmr_color_class}" onclick="doQueryCompleteOrderInfo(1);">查询</button>
  10. </td>
  11. </tr>
  12. <#else>
  13. <tr class="z-h40">
  14. <td class="z-text-left z-bold z-px14 z-bg-white" colspan="10">&nbsp;<#if Validates.isNotEmpty(designer)><span class="z-text-red z-bold">[${designer}]</span></#if>订单详情&emsp;
  15. <button class="z-mg-l10 z-button" onclick="exportDatas();"><i class="z-font z-download"></i>导出</button>
  16. </td>
  17. </tr>
  18. </#if>
  19. <tr class="z-h40 z-text-center z-bg-gray">
  20. <td width="130">订单号</td>
  21. <td width="110">旺旺号</td>
  22. <td width="100">设计师</td>
  23. <td width="110">店铺</td>
  24. <td width="90">设计类型</td>
  25. <td width="*">产品</td>
  26. <td width="80">设计费份数</td>
  27. <td width="90">领单时间</td>
  28. <td width="90">定稿时间</td>
  29. <td width="110">订单绩效</td>
  30. </tr>
  31. <#if result.size() == 0>
  32. <tr valign="middle" class="z-h40 z-text-center z-bg-white">2023-0
  33. <td colspan="12">暂不存在定稿订单信息</td>
  34. </tr>
  35. </#if>
  36. <#for item : result.list()>
  37. <tr align="center" class="z-h40 z-pointer" bgcolor="${zhiqim_manager_tr_bg(item_index)}">
  38. <td>${item.getDesignId()}</td>
  39. <td>${item.getBuyerNick()}</td>
  40. <td>${item.getDesigner()}</td>
  41. <td>${item.getShopNick()}</td>
  42. <td>${DraftConstants.get(item.getDraftType())}</td>
  43. <td>${item.getOrderText()}</td>
  44. <td>${item.getDesignCopies()}</td>
  45. <td>${Sqls.toDateTimeString(item.getDesignReceiveTime())}</td>
  46. <td>${Sqls.toDateTimeString(item.getDesignEndTime())}</td>
  47. <td>${CalculationUtil.getDesignerOrderPerformance(item,designer)}</td>
  48. </tr>
  49. </#for>
  50. </table>
  51. ${zhiqim_manager_paging_jsMethod(result, "doQueryCompleteOrderInfo")}