| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib uri="/WEB-INF/tlds/author.tld" prefix="h"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <title>选择存货(存货分类)</title>
- <link href="${pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
- <link href="${pageContext.request.contextPath}/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <script src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.5.2.min.js" type=text/javascript></script>
- <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/core/base.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/plugins/ligerLayout.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript" src="/shares/js/yw/erp2/common/control/productLookup.js"></script>
- <script type="text/javascript">
- var pidArr = new Array();
- var rows = new Array(); // 先声明一维
- var managerTree = "";
- var dialog = "";
- $(function() {
- $("#layout1").ligerLayout({
- leftWidth : 250,
- height : '99%'
- });
- loadTree();
- });
- </script>
- <style type="text/css">
- body {
- padding: 5px;
- margin: 0;
- }
-
- #layout1 {
- width: 99.5%;
- margin: 0 auto;
- padding: 0;
- }
-
- .l-button {
- margin-left: 1px;
- }
-
- .l-layout-left {
- overflow-y: auto;
- }
- </style>
- </head>
- <body>
- <%@ include file="/include/button.jsp"%>
- <%@ include file="/include/message.jsp"%>
- <div class="l-content">
- <div id="layout1">
- <div position="left" title="存货类别" class="user-tree-style">
- <ul id="productTypeTree" class="tree" style="margin-top: 3px;">
- </div>
- <c:if test="${empty requestScope.depot_id}">
- <div position="center" id="center" title="存货列表" >
- </c:if>
- <c:if test="${!empty requestScope.depot_id}">
- <div position="center" id="center" title="存货列表(${requestScope.depot_name })" >
- </c:if>
- <div class="default_search" style="margin: 0;">
- <ul style="width: 220px; float: left;">
- <li style="float: left; height: 25px; line-height: 25px; margin: 0; padding-top: 2px;padding-left:5px">存货编码:</li>
- <listyle="float: left; height: 25px; line-height: 25px; margin: 0; padding-top: 2px;">
- <input type="text" name="product_num" id="product_num" />
- </li>
- </ul>
- <ul style="width: 220px; float: left;">
- <li style="float: left; height: 25px; line-height: 25px; margin: 0; padding-top: 2px;padding-left:5px">存货名称:</li>
- <li style="float: left; height: 25px; line-height: 25px; margin: 0; padding-top: 2px;">
- <input type="text" name="product_name" id="product_name" />
- </li>
- </ul>
- <ul style="width: 220px; float: left;">
- <li style="float: left; height: 25px; line-height: 25px; margin: 0; padding-top: 2px;">
- <input type="button" class='l-button' name="search" onclick="searchByKword()" value="查询" />
- </li>
- </ul>
- </div>
- <div style="overflow: hidden; clear: both;">
- <div id="productGrid" style="margin: 0; padding: 0"></div>
- </div>
- </div>
- </div>
- </div>
- <input type="hidden" name="typefp" id="typefp" value="${requestScope.typefp}" />
- <input type="hidden" name="ptype_id" id="ptype_id" value="${requestScope.ptype_id}"/>
- <input type="hidden" name="depot_id" id="depot_id" value="${requestScope.depot_id }"/>
- <input type="hidden" name="location_id" id="location_id" value="${requestScope.location_id }" />
- <jsp:include page="commonControl.jsp" />
- </body>
- </html>
|