ordersDetailAnalysisPage.jsp 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <%@ page contentType="text/html;charset=UTF-8"%>
  2. <%@ include file="/WEB-INF/include/taglibs.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title></title>
  7. <%@ include file="/WEB-INF/include/common.jsp"%>
  8. <script type="text/javascript" src="${ctx}/script/common/jquery.comboboxRef.js"></script>
  9. <script type="text/javascript" src="${ctx}/script/common/jquery.combogridRef.js"></script>
  10. <script type="text/javascript">
  11. var functionId = '${functionId}';
  12. </script>
  13. <script type="text/javascript" src="${ctx}/script/oms/deliveryOutbound/ordersDetailAnalysis.js"></script>
  14. </head>
  15. <body>
  16. <form id="searchForm" action="#" method="post">
  17. <table width="100%">
  18. <tr>
  19. <td class="title">商品代码:</td>
  20. <td>
  21. <textarea name="itemCode" id="itemCode" condition='"operator":"in"' ></textarea>
  22. </td>
  23. <td class="title">客户查询号:</td>
  24. <td>
  25. <textarea name="customerRefferenceId" id="customerRefferenceId" condition='"operator":"in"' ></textarea>
  26. </td>
  27. <td class="title">订单状态:</td>
  28. <td>
  29. <select name="deliveryOutboundStatus" style="width:155px" class="easyui-combobox" data-options="multiple:true,editable:false,panelHeight:'auto'" condition='"operator":"in"'>${deliveryOutboundStatusList}</select>
  30. </td>
  31. </tr>
  32. <tr>
  33. <td class="title">仓库:</td>
  34. <td>
  35. <input myType="easyui-combogrid" name="warehouseId" id="warehouseId" condition='"operator":"="' />
  36. </td>
  37. <td class="title">货主:</td>
  38. <td>
  39. <input myType="easyui-combogrid" name="customerId" id="customerId" condition='"operator":"="' />
  40. </td>
  41. <td class="title">时间:</td>
  42. <td colspan="4">
  43. <input style="vertical-align:middle;width:150px;" name="time" class="easyui-datetimebox" condition='"operator":">="' />
  44. 到:
  45. <input style="vertical-align:middle;width:150px;" name="time" class="easyui-datetimebox" condition='"operator":"<="' />
  46. </td>
  47. <td align="right">
  48. <a id="btnSearch" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
  49. <a id="btnReset" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-reset'">重置</a>
  50. </td>
  51. </tr>
  52. </table>
  53. </form>
  54. <table id="maingrid">
  55. <thead>
  56. <tr>
  57. <th data-options="field:'warehouseName',align:'center',width:80">仓库</th>
  58. <th data-options="field:'customerName',align:'center',width:80">货主</th>
  59. <th data-options="field:'itemCode',align:'center',width:80">商品代码</th>
  60. <th data-options="field:'itemName',align:'center',width:170">商品名称</th>
  61. <th data-options="field:'specification',align:'center',width:150">商品规格</th>
  62. <th data-options="field:'locationName',align:'center',width:90">当前拣货位</th>
  63. <th data-options="field:'total',align:'center',width:100,sortable:true">发货量</th>
  64. <th data-options="field:'rate',align:'center',width:80,sortable:true">要货频次</th>
  65. <th data-options="field:'ratetimes',align:'center',width:90,sortable:true">要货平均量</th>
  66. <th data-options="field:'weekQuantity',align:'center',width:80,sortable:true">周发货量</th>
  67. <th data-options="field:'dailyQuantity',align:'center',width:100,sortable:true">周每日平均发货量</th>
  68. <th data-options="field:'availableDays',align:'center',width:80,sortable:true">可用天数</th>
  69. <th data-options="field:'totalUsableInventory',align:'center',width:80,sortable:true">库存可用总数</th>
  70. <th data-options="field:'declinedQuantity',align:'center',width:80,sortable:true">拒收数量</th>
  71. <th data-options="field:'returnsQuantity',align:'center',width:80,sortable:true">退货数量</th>
  72. </tr>
  73. </thead>
  74. </table>
  75. </body>
  76. </html>