123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <%@ include file="/WEB-INF/include/taglibs.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- <%@ include file="/WEB-INF/include/common.jsp"%>
- <script type="text/javascript" src="${ctx}/script/common/jquery.comboboxRef.js"></script>
- <script type="text/javascript" src="${ctx}/script/common/jquery.combogridRef.js"></script>
- <script type="text/javascript">
- var functionId = '${functionId}';
- var doNotLoading = true;
- </script>
- <script type="text/javascript" src="${ctx}/script/oms/deliveryOutbound/noStockAnalysis.js"></script>
- </head>
- <body>
- <form id="searchForm" action="#" method="post">
- <table width="100%">
- <tr>
- <td class="title">出货单号:</td>
- <td>
- <textarea name="deliveryOutboundId" id="deliveryOutboundId" condition='"operator":"in"' ></textarea>
- </td>
- <td class="title">客户查询号:</td>
- <td>
- <textarea name="customerRefferenceId" id="customerRefferenceId" condition='"operator":"in"' ></textarea>
- </td>
- <td class="title" rowspan="2">时间:</td>
- <td rowspan="2">
- <input style="vertical-align:middle;width:150px;" name="time" class="easyui-datetimebox" condition='"operator":">="' />
- 到:
- <input style="vertical-align:middle;width:150px;" name="time" class="easyui-datetimebox" condition='"operator":"<="' />
- </td>
- <td align="right" rowspan="2">
- <a id="btnSearch" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
- <a id="btnReset" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-reset'">重置</a>
- </td>
- </tr>
- <tr>
- <td class="title">仓库:</td>
- <td>
- <input myType="easyui-combogrid" name="warehouseId" id="warehouseId" condition='"operator":"="' />
- </td>
- <td class="title">货主:</td>
- <td>
- <input myType="easyui-combogrid" name="customerId" id="customerId" condition='"operator":"="' />
- </td>
- </tr>
- </table>
- </form>
- <table id="maingrid">
- <thead>
- <tr>
- <th data-options="field:'warehouseName',align:'center',width:150">仓库</th>
- <th data-options="field:'customerName',align:'center',width:150">货主</th>
- <th data-options="field:'itemCode',width:100">商品代码</th>
- <th data-options="field:'itemName',width:150">商品</th>
- <th data-options="field:'specification',width:100">规格型号</th>
- <th data-options="field:'total',align:'center',width:100,sortable:true">要货总量</th>
- <th data-options="field:'rate',align:'center',width:100,sortable:true">要货频次</th>
- <th data-options="field:'ratetimes',align:'center',width:100,sortable:true">要货平均量</th>
- <th data-options="field:'usableInventory',align:'center',width:100,sortable:true">库存可用量</th>
- <th data-options="field:'needNumber',align:'center',width:100,sortable:true">缺货量</th>
- <th data-options="field:'locationName',align:'center',sortable:true">当前拣货位</th>
- </tr>
- </thead>
- </table>
- </body>
- </html>
|