12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <%@ 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}';
- </script>
- <script type="text/javascript" src="${ctx}/script/oms/deliveryOutbound/ordersDetailAnalysis.js"></script>
- </head>
- <body>
- <form id="searchForm" action="#" method="post">
- <table width="100%">
- <tr>
- <td class="title">商品代码:</td>
- <td>
- <textarea name="itemCode" id="itemCode" condition='"operator":"in"' ></textarea>
- </td>
- <td class="title">客户查询号:</td>
- <td>
- <textarea name="customerRefferenceId" id="customerRefferenceId" condition='"operator":"in"' ></textarea>
- </td>
- <td class="title">订单状态:</td>
- <td>
- <select name="deliveryOutboundStatus" style="width:155px" class="easyui-combobox" data-options="multiple:true,editable:false,panelHeight:'auto'" condition='"operator":"in"'>${deliveryOutboundStatusList}</select>
- </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>
- <td class="title">时间:</td>
- <td colspan="4">
- <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">
- <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>
- </table>
- </form>
- <table id="maingrid">
- <thead>
- <tr>
- <th data-options="field:'warehouseName',align:'center',width:80">仓库</th>
- <th data-options="field:'customerName',align:'center',width:80">货主</th>
- <th data-options="field:'itemCode',align:'center',width:80">商品代码</th>
- <th data-options="field:'itemName',align:'center',width:170">商品名称</th>
- <th data-options="field:'specification',align:'center',width:150">商品规格</th>
- <th data-options="field:'locationName',align:'center',width:90">当前拣货位</th>
- <th data-options="field:'total',align:'center',width:100,sortable:true">发货量</th>
- <th data-options="field:'rate',align:'center',width:80,sortable:true">要货频次</th>
- <th data-options="field:'ratetimes',align:'center',width:90,sortable:true">要货平均量</th>
- <th data-options="field:'weekQuantity',align:'center',width:80,sortable:true">周发货量</th>
- <th data-options="field:'dailyQuantity',align:'center',width:100,sortable:true">周每日平均发货量</th>
- <th data-options="field:'availableDays',align:'center',width:80,sortable:true">可用天数</th>
- <th data-options="field:'totalUsableInventory',align:'center',width:80,sortable:true">库存可用总数</th>
- <th data-options="field:'declinedQuantity',align:'center',width:80,sortable:true">拒收数量</th>
- <th data-options="field:'returnsQuantity',align:'center',width:80,sortable:true">退货数量</th>
- </tr>
- </thead>
- </table>
- </body>
- </html>
|