noStockAnalysis.jsp 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. var doNotLoading = true;
  13. </script>
  14. <script type="text/javascript" src="${ctx}/script/oms/deliveryOutbound/noStockAnalysis.js"></script>
  15. </head>
  16. <body>
  17. <form id="searchForm" action="#" method="post">
  18. <table width="100%">
  19. <tr>
  20. <td class="title">出货单号:</td>
  21. <td>
  22. <textarea name="deliveryOutboundId" id="deliveryOutboundId" condition='"operator":"in"' ></textarea>
  23. </td>
  24. <td class="title">客户查询号:</td>
  25. <td>
  26. <textarea name="customerRefferenceId" id="customerRefferenceId" condition='"operator":"in"' ></textarea>
  27. </td>
  28. <td class="title" rowspan="2">时间:</td>
  29. <td rowspan="2">
  30. <input style="vertical-align:middle;width:150px;" name="time" class="easyui-datetimebox" condition='"operator":">="' />
  31. 到:
  32. <input style="vertical-align:middle;width:150px;" name="time" class="easyui-datetimebox" condition='"operator":"<="' />
  33. </td>
  34. <td align="right" rowspan="2">
  35. <a id="btnSearch" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
  36. <a id="btnReset" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-reset'">重置</a>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td class="title">仓库:</td>
  41. <td>
  42. <input myType="easyui-combogrid" name="warehouseId" id="warehouseId" condition='"operator":"="' />
  43. </td>
  44. <td class="title">货主:</td>
  45. <td>
  46. <input myType="easyui-combogrid" name="customerId" id="customerId" condition='"operator":"="' />
  47. </td>
  48. </tr>
  49. </table>
  50. </form>
  51. <table id="maingrid">
  52. <thead>
  53. <tr>
  54. <th data-options="field:'warehouseName',align:'center',width:150">仓库</th>
  55. <th data-options="field:'customerName',align:'center',width:150">货主</th>
  56. <th data-options="field:'itemCode',width:100">商品代码</th>
  57. <th data-options="field:'itemName',width:150">商品</th>
  58. <th data-options="field:'specification',width:100">规格型号</th>
  59. <th data-options="field:'total',align:'center',width:100,sortable:true">要货总量</th>
  60. <th data-options="field:'rate',align:'center',width:100,sortable:true">要货频次</th>
  61. <th data-options="field:'ratetimes',align:'center',width:100,sortable:true">要货平均量</th>
  62. <th data-options="field:'usableInventory',align:'center',width:100,sortable:true">库存可用量</th>
  63. <th data-options="field:'needNumber',align:'center',width:100,sortable:true">缺货量</th>
  64. <th data-options="field:'locationName',align:'center',sortable:true">当前拣货位</th>
  65. </tr>
  66. </thead>
  67. </table>
  68. </body>
  69. </html>