orderCheckFinish.zml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <#def designatedPath="/orderCheckWait.htm"/>
  2. ${Styles.htmlOverflowHidden()}
  3. ${Scripts.src("/zinc/js/global_2019010801.js")}
  4. ${yangcai_calc_Left_width_height(400, 110)}
  5. <#var data="data=copy,userText,CustomFile,EndFile,WorkFile,FristThumFile,TbzFile"/>
  6. <#var addRule="addRule=CustomFile,EndFile,WorkFile,TbzFile"/>
  7. <#var delRule="delRule=CustomFile,EndFile,WorkFile,TbzFile"/>
  8. ${zhiqim_manager_breadcrumb("已审订单")}
  9. ${zhiqim_manager_content()}
  10. <#-- 导航 -->
  11. <div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
  12. <nav>
  13. <ul>
  14. <#if ZmrPathRule.check(request, "/orderCheckWait.htm")><li onclick="Z.L.href('/orderCheckWait.htm');">待审订单</li></#if>
  15. <li class="z-active">已审订单</li>
  16. <#if ZmrPathRule.check(request, "/orderCheckWait.htm")><li onclick="Z.L.href('/orderCheckBackList.htm');">退回列表</li></#if>
  17. </ul>
  18. </nav>
  19. </div>
  20. <#-- 左侧功能 -->
  21. <div id="left" class="z-overflow-y-auto z-overflow-x-hidden z-relative-left">
  22. <#-- 查询条件 -->
  23. ${zhiqim_manager_title("查询条件")}
  24. <form name="theFrom" id="theFrom" >
  25. <table class="z-table z-bordered z-pd6 z-bg-white">
  26. <tr class="z-h40">
  27. <td width="30%">订单号:<input name="designId" class="${zmr_color_class} z-input z-w160" value="${designId}" maxlength="64" placeholder="订单号"></td>
  28. <td width="34%">产品类型:<select name="typeId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  29. <option value="">全部</option>
  30. <#for item : typeList>
  31. <option value="${item.getTypeId()}" <#if typeId == item.getTypeId()>selected</#if>>${item.getTypeName()}</option>
  32. </#for>
  33. </select>
  34. </td>
  35. <td>审核时间:<input id="startDate" name="startDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${startDate}">&nbsp;-&nbsp;
  36. <input id="endDate" name="endDate" class="z-input z-mg-l3 z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${endDate}">
  37. </td>
  38. </tr>
  39. <tr class="z-h40">
  40. <td>旺旺号:<input name="buyerNick" class="${zmr_color_class} z-input z-w160" value="${buyerNick}" maxlength="64" placeholder="旺旺号"></td>
  41. <td>其他信息:<input class="${zmr_color_class} z-input z-w200" id="otherInfo" name="otherInfo" maxlength="64" value="${otherInfo}" placeholder="收件人、电话、对稿手机"></td>
  42. <td>
  43. <button class="z-button z-large z-w120 z-mg-r15 ${zmr_color_class}">查询</button><button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button>
  44. </td>
  45. </tr>
  46. <tr class="z-h40" align="center">
  47. <td colspan="3">
  48. </td>
  49. </tr>
  50. </table>
  51. </form>
  52. <#-- 列表 -->
  53. <div class="z-overflow-auto z-bd-r">
  54. <table class="z-table z-bordered z-h40-tr z-pd5 zi-bd-r-none z-bg-white z-text-center" style="width:1300px">
  55. <tr bgcolor="${zmr_thead_bgcolor}">
  56. <td width="50"><input name="allDesignId" type="checkbox" data-role="z-checkbox" data-class="${zmr_color_class}" value="${pageResult.pageNo()}" onclick="Z.FM.doSelectCheckBox('designId', this.checked);"> 选择</td>
  57. <td width="80">订单号</td>
  58. <td width="80">商户</td>
  59. <td width="80">稿件类型</td>
  60. <td width="80">订单金额</td>
  61. <td width="60">产品类型</td>
  62. <td width="90">审稿时间</td>
  63. <td width="90">审稿人</td>
  64. <td width="150">特殊工艺</td>
  65. <td width="80">设计师</td>
  66. </tr>
  67. ${zhiqim_manager_tr_no_record(pageResult, 20, "暂时没有订单信息")}
  68. <#for item : pageResult.list()>
  69. <input id="buyerNick_${item.getDesignId()}" type="hidden" value="${item.getBuyerNick()}">
  70. <input id="userQq_${item.getDesignId()}" type="hidden" value="${item.getUserQq()}">
  71. <tr class="z-pointer" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_checkbox()}>
  72. <td><input name="designId" type="checkbox" data-role="z-checkbox" data-class="${zmr_color_class}" value="${item.getDesignId()}" onclick="Z.L.href('attaFileList.htm?designId=${item.getDesignId()}&${data}&${addRule}&${delRule}', attaFileList);"></td>
  73. <td>${item.getDesignId()}</td>
  74. <td>${Global.get(DesignMerchantCache.class).getName(item.getMerchantId())}</td>
  75. <td>${DraftConstants.get(item.getDraftType())}</td>
  76. <td>${Amounts.toYuanMustRadix(item.getAmount())}</td>
  77. <td>${Global.get(DesignTypeCache.class).getName(item.getTypeId())}</td>
  78. <td>${Sqls.toDateTimeString(item.getCheckTime())}</td>
  79. <td>${item.getChecker()}</td>
  80. <td>${item.getPrintSpecial()}</td>
  81. <td>${item.getDesigner()}</td>
  82. </tr>
  83. </#for>
  84. </table>
  85. </div>
  86. ${zhiqim_manager_paging(pageResult, "orderCheckFinish.htm")}
  87. </div>
  88. ${zhiqim_manager_content_end()}
  89. <#--右侧文件信息-->
  90. <div class="z-fixed z-pd10 z-bd-l z-bg-white z-h100p" style="top:${zmr_topnav_height}px;right:0;width:400px;z-index:50;">
  91. <iframe name="attaFileList" src="attaFileList.htm?${data}&${addRule}&${delRule}" frameborder="0" scrolling="auto" height="100%" width="100%"></iframe>
  92. </div>
  93. <#-- 联系旺旺&联系QQ弹窗框 -->
  94. <iframe id="openFrm" class="z-hide" src="about:blank"></iframe>