orderList.zml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. <script src="https://oss-88-res.oss-cn-shenzhen.aliyuncs.com/static/js/jquery-3.4.1.min.js"></script>
  2. ${Scripts.src("/zinc/js/qrcode.min.js")}
  3. ${Styles.htmlOverflowHidden()}
  4. ${Scripts.src("/zinc/js/global_2019010801.js")}
  5. ${yangcai_calc_Left_width_height(414, 110)}
  6. <script>
  7. function doAssignDesigner()
  8. {//指定设计师
  9. var designId = Z.FM.getCheckBoxValue("designId");
  10. if (Z.V.isEmpty(designId))
  11. {
  12. Z.alert("请选择一条订单");
  13. return;
  14. }
  15. var ajax = new Z.Ajax();
  16. ajax.setClassName("DesignOrderPresenter");
  17. ajax.setMethodName("doAssignABCheck");
  18. ajax.addParam("designId", designId);
  19. ajax.setFailure(function()
  20. {
  21. Z.failure(ajax.responseText, function(){parent.Z.Dialog.close();});
  22. });
  23. ajax.setSuccess(function(result)
  24. {
  25. if(result != '')
  26. {
  27. Z.confirm(result, function(){
  28. var dialog = new Z.Dialog();
  29. dialog.title = "指定设计师";
  30. dialog.url = "/assignDesigners.htm?designId=" + designId;
  31. dialog.width = 600;
  32. dialog.height = 220;
  33. dialog.execute();
  34. });
  35. }
  36. else
  37. {
  38. var dialog = new Z.Dialog();
  39. dialog.title = "指定设计师";
  40. dialog.url = "/assignDesigners.htm?designId=" + designId;
  41. dialog.width = 600;
  42. dialog.height = 220;
  43. dialog.execute();
  44. }
  45. });
  46. ajax.setLoading("assignDesigners", '正在操作', {disabled:true});
  47. ajax.execute();
  48. }
  49. function doDesignOrdertoERP(e)
  50. {//开启设计
  51. var url = "https://file.lingtao8.com/?tid="+e;
  52. var dialog = new Z.Dialog();
  53. dialog.title = "客户信息";
  54. dialog.url = url;
  55. dialog.width = 1000;
  56. dialog.height = 630;
  57. dialog.execute();
  58. }
  59. function doDesignCopiesr()
  60. {//设计份数修改
  61. var designId = Z.FM.getChecked("designId");
  62. var copies= Z("#userQqs_"+designId).val();
  63. if (Z.V.isEmpty(designId))
  64. {
  65. Z.alert("请选择一条订单");
  66. return;
  67. }
  68. var dialog = new Z.Dialog();
  69. dialog.title = "订单["+designId+"]设计份数修改";
  70. dialog.url = "/designCopiesr.htm?designId="+designId+"&copies="+copies;
  71. dialog.width = 310;
  72. dialog.height = 150;
  73. dialog.execute();
  74. }
  75. function doProgressNote(id)
  76. {//进度备注
  77. var designId =id
  78. if (Z.V.isEmpty(designId))
  79. {
  80. designId = Z.FM.getChecked("designId");
  81. if (Z.V.isEmpty(designId))
  82. {
  83. Z.alert("请选择一条订单");
  84. return;
  85. }
  86. }
  87. var dialog = new Z.Dialog();
  88. dialog.title = "订单["+designId+"]进度备注";
  89. dialog.url = "/progressNote.htm?designId="+designId;
  90. dialog.width = 1000;
  91. dialog.height = 630;
  92. dialog.execute();
  93. }
  94. function quickContact()
  95. {//快捷联系
  96. var designId = Z.FM.getChecked("designId");
  97. if (Z.V.isEmpty(designId))
  98. {
  99. Z.alert("请选择一条订单");
  100. return;
  101. }
  102. var ajax = new Z.Ajax();
  103. ajax.setClassName("OrderPresenter");
  104. ajax.setMethodName("quickContact");
  105. ajax.addParam("designId", designId);
  106. ajax.setFailureAlert();
  107. ajax.setSuccess(function(){
  108. var obj = Z.J.toObject(this.responseText);
  109. var resultHtml = obj.resultHtml;
  110. if (!Z("#quickContact_dialog")[0])
  111. {
  112. var dialog = new Z.Dialog();
  113. dialog.title = '<span id="quickContact_title" class="z-bold"></span>';
  114. dialog.text = '<div id="quickContact_dialog"></div>';
  115. dialog.width = 750;
  116. dialog.height = 400;
  117. dialog.shadow = false;
  118. dialog.execute();
  119. dialog.$background.remove();
  120. console.log(dialog)
  121. }
  122. Z("#quickContact_dialog").htmlc(resultHtml);
  123. Z("#quickContact_title").htmlc(Z("#title_content").html());
  124. });
  125. ajax.setLoading("quickContactBtn", '<i class="z-font z-query"></i>正在查询', {disabled:true});
  126. ajax.execute();
  127. }
  128. //修改单价
  129. function doEditDesignPrice() {
  130. var designId = Z.FM.getChecked("designId");
  131. var designPrice = document.getElementById("designPrice_"+designId).value;
  132. var orderText = document.getElementById("orderText_"+designId).value;
  133. if (Z.V.isEmpty(designId))
  134. {
  135. Z.alert("请选择一条订单");
  136. return;
  137. }
  138. var dialog = new Z.Dialog();
  139. dialog.title = "修改订单单价";
  140. dialog.url = "/doEditDesignPrice.htm?designId=" + designId +"&designPrice="+designPrice+"&orderText="+orderText;
  141. dialog.width = 600;
  142. dialog.height = 244;
  143. dialog.execute();
  144. }
  145. //修改加急费
  146. function doEditUrgentPrice() {
  147. var designId = Z.FM.getChecked("designId");
  148. var designPrice = document.getElementById("urgentPrice_"+designId).value;
  149. var orderText = document.getElementById("orderText_"+designId).value;
  150. if (Z.V.isEmpty(designId))
  151. {
  152. Z.alert("请选择一条订单");
  153. return;
  154. }
  155. var dialog = new Z.Dialog();
  156. dialog.title = "修改订单加急费";
  157. dialog.url = "/doEditUrgentPrice.htm?designId=" + designId +"&designPrice="+designPrice+"&orderText="+orderText;
  158. dialog.width = 600;
  159. dialog.height = 244;
  160. dialog.execute();
  161. }
  162. //修改稿件类型
  163. function doEditDraftType(){
  164. var designId = Z.FM.getChecked("designId");
  165. var designPrice = document.getElementById("urgentPrice_"+designId).value;
  166. var orderText = document.getElementById("orderText_"+designId).value;
  167. if (Z.V.isEmpty(designId))
  168. {
  169. Z.alert("请选择一条订单");
  170. return;
  171. }
  172. var dialog = new Z.Dialog();
  173. dialog.title = "修改订单稿件类型";
  174. dialog.url = "/doEditDraftType.htm?designId=" + designId +"&designPrice="+designPrice+"&orderText="+orderText;
  175. dialog.width = 600;
  176. dialog.height = 400;
  177. dialog.execute();
  178. }
  179. //修改订单绩效
  180. function doEditDesignOrder(){
  181. var designId = Z.FM.getChecked("designId");
  182. if(Z.V.isEmpty(designId)){
  183. Z.alert("请选择一条订单");
  184. return;
  185. }
  186. var dialog = new Z.Dialog();
  187. dialog.title = "修改订单["+designId+']';
  188. dialog.url = "/doEditDesignOrder.htm?designId=" + designId;
  189. dialog.width = 900;
  190. dialog.height = 400;
  191. dialog.execute();
  192. }
  193. //修改订单状态
  194. function doEditDraftType(designId){
  195. var orderText= Z("#orderText_"+designId).val();
  196. var status_= Z("#status_"+designId).val();
  197. var dialog = new Z.Dialog();
  198. dialog.title = "修改订单稿件类型";
  199. dialog.url = "/doEditStatus.htm?designId=" + designId +"&status_="+status_+"&orderText="+orderText;
  200. dialog.width = 600;
  201. dialog.height = 400;
  202. dialog.execute();
  203. }
  204. //审核详情查看
  205. function doCheckDetail()
  206. {
  207. var designId = Z.FM.getChecked("designId");
  208. var dialog = new Z.Dialog();
  209. dialog.title = "审核退回详情";
  210. dialog.url = "/checkBackDetail.htm?designId=" + designId;
  211. dialog.width = 800;
  212. dialog.height = 500;
  213. dialog.execute();
  214. }
  215. function doDesignPriceCalculate(){
  216. var designId = 0;
  217. if(Z.FM.getChecked("designId")){
  218. designId = Z.FM.getChecked("designId");
  219. }
  220. var ajax = new Z.Ajax();
  221. ajax.setClassName("OrderPresenter");
  222. ajax.setMethodName("designPriceCalculate");
  223. ajax.addParam(designId);
  224. ajax.setFailureAlert();
  225. ajax.setSuccess(function(){
  226. Z.success("操作成功",function(){parent.location.reload();parent.Z.Dialog.close();});
  227. });
  228. ajax.setLoading("doDesignPriceCalculate", '正在提交', {disabled:true});
  229. ajax.execute();
  230. }
  231. function returnTk(){
  232. var designId = Z.FM.getChecked("designId");
  233. if(Z.V.isEmpty(designId)){
  234. Z.alert("请选择一条订单");
  235. return;
  236. }
  237. Z.confirm("确认重新启用此订单吗,如果重新启用将自动回退到请求退款前的状态,只能启用淘宝自动退款且已经取消的订单", function()
  238. {
  239. var ajax = new Z.Ajax();
  240. ajax.setClassName("OrderPresenter");
  241. ajax.setMethodName("returnTk");
  242. ajax.addParam(designId);
  243. ajax.setFailureAlert();
  244. ajax.setSuccess(function(){
  245. Z.success("操作成功",function(){parent.location.reload();parent.Z.Dialog.close();});
  246. });
  247. ajax.setLoading("returnTk", '正在提交', {disabled:true});
  248. ajax.execute();
  249. }, {width:320});
  250. }
  251. function changeStatus(designId){
  252. var dialog = new Z.Dialog();
  253. dialog.title = "修改状态";
  254. dialog.url = "/changeStatus.htm?designId=" + designId;
  255. dialog.width = 800;
  256. dialog.height = 500;
  257. dialog.execute();
  258. }
  259. </script>
  260. <#var data="data=copy,userText,userNotice,CustomFile,DesginFile,EndFile,WorkFile,TbzFile"/>
  261. <#var addRule="addRule=CustomFile,DesginFile,EndFile,WorkFile,TbzFile"/>
  262. <#var delRule="delRule=CustomFile,DesginFile,EndFile,WorkFile,TbzFile"/>
  263. ${zhiqim_manager_breadcrumb("订单列表")}
  264. ${zhiqim_manager_content()}
  265. <#-- 导航 -->
  266. <div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
  267. <nav>
  268. <ul>
  269. <li class="z-active">订单列表</li>
  270. <#if ZmrPathRule.check(request, "/orderLogList.htm")><li onclick="Z.L.href('orderLogList.htm');">订单日志</li></#if>
  271. <#if ZmrPathRule.check(request, "/orderRefundList.htm")><li onclick="Z.L.href('orderRefundList.htm');">退款订单列表</li></#if>
  272. <li onclick="Z.L.href('orderBacklog.htm');">待办列表</li>
  273. </ul>
  274. </nav>
  275. </div>
  276. <#-- 左侧功能 -->
  277. <div class="z-overflow-y-auto" style="width: 100% !important;height: 696px;">
  278. <#-- 查询条件 -->
  279. ${zhiqim_manager_title("查询条件")}
  280. <form action="orderList.htm" method="post">
  281. <table class="z-table z-bordered z-pd6 z-bg-white">
  282. <tr>
  283. <td width="30%">订单号:<input name="designId" class="${zmr_color_class} z-input z-w160 z-mg-l4" value="${designId}" maxlength="64" placeholder="订单号"></td>
  284. <td width="34%">产品类型:
  285. <select name="typeId" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
  286. <option value="">全部</option>
  287. <#for item : DesignTypeDao.list()>
  288. <option value="${item.getTypeId()}" <#if typeId == item.getTypeId()>selected</#if>>${item.getTypeName()}</option>
  289. </#for>
  290. </select>
  291. </td>
  292. <td>
  293. 下单时间:<input id="startDate" name="startDate" class="z-input z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${startDate}">&nbsp;-&nbsp;
  294. <input id="endDate" name="endDate" class="z-input z-mg-l3 z-w90 ${zmr_color_class}" readonly="true" onfocus="Z.date(this);" value="${endDate}">
  295. </td>
  296. </tr>
  297. <tr class="z-h40">
  298. <td>旺旺号:<input name="buyerNick" class="${zmr_color_class} z-input z-w160 z-mg-l4" value="${buyerNick}" maxlength="64" placeholder="旺旺号"></td>
  299. <td>订单金额:<select name="amount" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
  300. <option value="">全部</option>
  301. <option value="10000" <#if amount == 10000>selected</#if>>100以上</option>
  302. <option value="30000" <#if amount == 30000>selected</#if>>300以上</option>
  303. <option value="50000" <#if amount == 50000>selected</#if>>500以上</option>
  304. <option value="100000" <#if amount == 100000>selected</#if>>1000以上</option>
  305. </select>
  306. </td>
  307. <td>
  308. 商户名称:<select name="merchantId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  309. <option value="">全部</option>
  310. <#for item : Global.get(DesignMerchantCache.class).getList()>
  311. <option value="${item.getMerchantName()}" <#if merchantId == item.getMerchantId()>selected</#if>>${item.getMerchantName()}</option>
  312. </#for>
  313. </select>
  314. </td>
  315. </tr>
  316. <tr>
  317. <td>设计师:<input name="designer" class="${zmr_color_class} z-input z-w160 z-mg-l4" value="${designer}" maxlength="64" placeholder="设计师">
  318. </td>
  319. <td>
  320. 设计等级:<select name="draftType" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
  321. <option value="">全部</option>
  322. <#for item : DraftConstants.getList()>
  323. <#if item.value() != 4 >
  324. <option value="${item.value()}" <#if draftType == item.value()>selected</#if>>${item.desc()}</option>
  325. </#if>
  326. </#for>
  327. </select>
  328. </td>
  329. <td>
  330. 订单状态:<select name="orderStatus" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  331. <option value="">全部</option>
  332. <#for statusStr : StatusConstants.getOrderStatusList()>
  333. <#if statusStr.value() != StatusConstants.ORDER_62.value() && statusStr.value() != StatusConstants.ORDER_20.value()>
  334. <option value="${statusStr.value()}" <#if statusStr.value() == orderStatus>selected</#if>>${statusStr.desc()}</option>
  335. </#if>
  336. </#for>
  337. <option value="110" <#if orderStatus == 110>selected</#if>>未完成</option>
  338. <option value="120" <#if orderStatus == 120>selected</#if>>审稿退回</option>
  339. </select>
  340. </td>
  341. </tr>
  342. <tr>
  343. <td>erp单号:<input name="tids" class="${zmr_color_class} z-input z-w160 z-mg-l4" value="${tids}" placeholder="erp单号">
  344. </td>
  345. <td>
  346. </td>
  347. <td>
  348. </td>
  349. </tr>
  350. <tr class="z-h40">
  351. <td colspan="3" align="center"><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></td>
  352. </tr>
  353. </table>
  354. </form>
  355. <#-- 操作功能 -->
  356. <div class="z-w100p z-mg-t10 z-mg-b3">
  357. <#if ZmrPathRule.check(request, "/assignDesigner.htm")><button type="button" class="z-button z-blue" onclick="doAssignDesigner();"><i class="z-font z-modify"></i>指定设计师</button></#if>
  358. <button type="button" class="z-button z-blue" onclick="doProgressNote();"><i class="z-font z-modify"></i>进度备注</button>
  359. <button class="z-button z-blue" onclick="doCheckDetail();"><i class="z-font z-query"></i>退回原因查看</button>
  360. <button id="quickContactBtn" type="button" class="z-button z-purple" onclick="quickContact();"><i class="z-font z-share"></i>快捷联系人</button>
  361. <#if ZmrPathRule.check(request, "/designCopiesr.htm")>
  362. <!--<button type="button" class="z-button z-blue" onclick="doDesignCopiesr();"><i class="z-font z-modify"></i>设计份数修改</button>
  363. <button id="doDesignPriceCalculate" type="button" class="z-button z-yellow" onclick="doDesignPriceCalculate();"><i class="z-font z-refresh"></i>重置佣金</button>
  364. <button id="doEditDesignPrice" type="button" class="z-button z-yellow" onclick="doEditDesignPrice();"><i class="z-font z-refresh"></i>修改佣金</button>
  365. <button id="doEditUrgentPrice" type="button" class="z-button z-yellow" onclick="doEditUrgentPrice();"><i class="z-font z-refresh"></i>修改加急费</button>-->
  366. <button id="doEditDesignOrder" type="button" class="z-button z-yellow" onclick="doEditDesignOrder();"><i class="z-font z-refresh"></i>修改绩效</button>
  367. </#if>
  368. <button id="returnTk" type="button" class="z-button z-green" onclick="returnTk();"><i class="z-font z-open"></i>启用订单</button>
  369. <!--<button id="changeStatus" type="button" class="z-button z-green" onclick="changeStatus();"><i class="z-font z-open"></i>修改状态</button>-->
  370. </div>
  371. <#-- 列表-->
  372. <div class="z-overflow-auto z-bd-r">
  373. <table class="z-table z-bordered z-h40-tr z-pd5 zi-bd-r-none z-bg-white z-text-center" style="width:100">
  374. <tr bgcolor="${zmr_thead_bgcolor}" data-layoutCode="orderList">
  375. <td width="30"><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>
  376. <td width="100">订单号</td>
  377. <td width="200">备注</td>
  378. <td width="100">erp订单号</td>
  379. <td width="100">客户信息</td>
  380. <td width="70">店铺名称</td>
  381. <td width="100">旺旺号</td>
  382. <td width="70">设计类型<br/>产品类型</td>
  383. <td width="70">下单时间</td>
  384. <td width="60">订单金额</td>
  385. <td width="60">设计佣金<span data-role="z-tooltip" data-options="align:left;width:200px;" class="z-color-red" data-text="设计师完成订单后获取的费用">&nbsp;*</span></td>
  386. <td width="70">设计师</td>
  387. <td width="60">订单状态</td>
  388. <td width="100">进度备注</td>
  389. <td width="35">领单方式</td>
  390. <td width="100">领单时间</td>
  391. <td width="100">定稿时间</td>
  392. <td width="100">审稿时间</td>
  393. <td width="80">审稿人</td>
  394. <td width="100">退单理由</td>
  395. </tr>
  396. ${zhiqim_manager_tr_no_record(pageResult, 27, "暂时没有数据")}
  397. <#for item : pageResult.list()>
  398. <input id="buyerNick_${item.getDesignId()}" type="hidden" value="${item.getBuyerNick()}">
  399. <input id="userQqs_${item.getDesignId()}" type="hidden" value="${item.getDesignCopies()}">
  400. <input id="status_${item.getDesignId()}" type="hidden" value="${item.getStatus()}">
  401. <input id="designPrice_${item.getDesignId()}" type="hidden" value="${Amounts.toYuan(item.getDesignPrice())}">
  402. <input id="urgentPrice_${item.getDesignId()}" type="hidden" value="${Amounts.toYuan(item.getUrgentPrice())}">
  403. <input id="orderText_${item.getDesignId()}" type="hidden" value="${item.getOrderText()}">
  404. <tr class="z-pointer" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_checkbox()}>
  405. <!--<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>-->
  406. <td><input name="designId" type="checkbox" data-role="z-checkbox" data-class="${zmr_color_class}" value="${item.getDesignId()}"></td>
  407. <td>${item.getDesignId()}
  408. <#if Validates.isNotEmpty(item.getCheckBackReason()) && item.getStatus() lt 55 >
  409. <span style="color: red;font-size:16px;font-weight: bold" data-role="z-tooltip" data-options="placement:right;align:bottom;arrow:false;" data-text="订单已被审稿驳回"> 驳 </span>
  410. <#elseif Validates.isNotEmpty(item.getDraftBackReason()) && item.getStatus() lt 55 >
  411. <span style="color: red;font-size:16px;font-weight: bold" data-role="z-tooltip" data-options="placement:right;align:bottom;arrow:false;" data-text="订单已被审稿驳回"> 驳 </span>
  412. <#elseif Validates.isNotEmpty(item.getEndBackReason()) && item.getStatus() lt 55 >
  413. <span style="color: red;font-size:16px;font-weight: bold" data-role="z-tooltip" data-options="placement:right;align:bottom;arrow:false;" data-text="订单已被审稿驳回"> 驳 </span>
  414. </#if>
  415. <#if item.isChange()>
  416. <span style="color: red;font-size:16px;font-weight: bold" data-role="z-tooltip" data-options="placement:right;align:bottom;arrow:false;" data-text="改稿订单"> 改 </span>
  417. </#if>
  418. <#if item.isBack()>
  419. <span style="color: red;font-size:16px;font-weight: bold" data-role="z-tooltip" data-options="placement:right;align:bottom;arrow:false;" data-text="打回订单"> 回 </span>
  420. </#if>
  421. <#if item.getIsOldUser() gt 0>
  422. <span style="color: #9D24D7;font-size:16px;font-weight: bold" data-role="z-tooltip" data-options="placement:right;align:bottom;arrow:false;" data-text="老用户订单"> 老 </span>
  423. </#if>
  424. </td>
  425. <td>${item.getOrderText()}</td>
  426. <td>${item.getTids()}</td>
  427. <td align="center">
  428. <span class="z-button z-blue" onclick="doDesignOrdertoERP('${item.getTids()}')">查看</span>
  429. </td>
  430. <td>${item.getShopNick()}</td>
  431. <td>${item.getBuyerNick()}</td>
  432. <td><#if item.isOnlyDesign()>
  433. 仅设计
  434. <#else>印刷设计</#if>
  435. <br/>${Global.get(DesignTypeCache.class).getName(item.getTypeId())}
  436. </td>
  437. <td>${Sqls.toDateTimeString(item.getCreateTime())}</td>
  438. <td>${Amounts.toYuanMustRadix(item.getAmount())}</td>
  439. <td>${Amounts.toYuanMustRadix(item.getDesignPrice())}</td>
  440. <td>${item.getDesigner()}</td>
  441. <td onclick="changeStatus('${item.getDesignId()}')">${StatusConstants.getStatus(item.getStatus())}</td>
  442. <td>${progressNoteMap.get(item.getDesignId())}</td>
  443. <td>
  444. <#if item.getReceiveType() == 0>抢单</#if>
  445. <#if item.getReceiveType() == 1>派单</#if>
  446. <#if item.getReceiveType() == 2>指定</#if>
  447. </td>
  448. <td>${Sqls.toDateTimeString(item.getDesignReceiveTime())}</td>
  449. <td>${Sqls.toDateTimeString(item.getDesignEndTime())}</td>
  450. <td>${Sqls.toDateTimeString(item.getCheckTime())}</td>
  451. <td>${item.getChecker()}</td>
  452. <td>${item.getReturnReason()}</td>
  453. </tr>
  454. </#for>
  455. </table>
  456. </div>
  457. ${zhiqim_manager_paging(pageResult, "/orderList.htm")}
  458. </div>
  459. ${zhiqim_manager_content_end()}
  460. <#--右侧文件信息-->
  461. <#--<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;">
  462. <iframe name="attaFileList" src="attaFileList.htm?${data}&${addRule}&${delRule}" frameborder="0" scrolling="auto" height="100%" width="100%"></iframe>
  463. </div> -->
  464. <#-- 联系旺旺&联系QQ弹窗框 -->
  465. <iframe id="openFrm" class="z-hide" src="about:blank"></iframe>