<%@ page language="java" contentType="text/html; charset=UTF-8"
|
pageEncoding="UTF-8"%>
|
<%@ include file="../../include/core.jsp" %>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<html>
|
<head>
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<title></title>
|
|
<script type="text/javascript" src="${path }/jsFiles/retrieve.js"></script>
|
<style type="text/css">
|
.modal-dialog {
|
position: absolute;
|
top: 0;
|
bottom: 0;
|
left: 0;
|
right: 0;
|
}
|
|
.modal-content {
|
/*overflow-y: scroll; */
|
position: absolute;
|
top: 0;
|
bottom: 0;
|
height :60%;
|
width: 100%;
|
}
|
|
.modal-body {
|
overflow-y: scroll;
|
position: absolute;
|
top: 55px;
|
bottom: 65px;
|
width: 100%;
|
}
|
|
.modal-header .close {margin-right: 15px;}
|
|
.modal-footer {
|
position: absolute;
|
width: 100%;
|
bottom: 0;
|
}
|
</style>
|
</head>
|
<body>
|
|
<!-- search -->
|
<div class="panel panel-default">
|
<div class="panel-body">
|
<form id="conForm" class="form-inline">
|
<input type="text" class="form-control" style="width:10%" id="loc_no" name="loc_no" placeholder="库位号">
|
<input type="text" class="form-control" style="width:15%" id="search_mat_no" name="search_mat_no" placeholder="搜索">
|
<input type="text" class="form-control" style="width:15%" id="mat_name" name="mat_name" placeholder="物料名称">
|
<input type="text" class="form-control" style="width:15%" id="mat_no" name="mat_no" placeholder="箱号/批号">
|
<input type="text" class="form-control" style="width:15%" id="customer_name" name="customer_name" placeholder="客户名称">
|
|
<button type="button" onclick="getByCon()" class="btn btn-info ">
|
<span class="glyphicon glyphicon-search" aria-hidden="true" > 搜索</span></button>
|
</form>
|
</div>
|
</div>
|
|
<!-- 入库启动 -->
|
<div class="panel panel-default">
|
<div class="panel-body">
|
<form id="storeForm" class="form-inline">
|
<div class="col-sm-3">
|
<label>出库站:</label>
|
<select class="form-control form-control-static" name="stn_no" id="stn_no"></select>
|
</div>
|
<!-- <div class="col-sm-3"> -->
|
<!-- <label>拣料站:</label> -->
|
<!-- <select class="form-control form-control-static" name="stn_no" id="stn_no1"></select> -->
|
<!-- </div> -->
|
<div class="col-sm-3">
|
<button onclick="PakRetrieve()" type="button" class="btn btn-success">
|
<span class="glyphicon glyphicon-plus" aria-hidden="true">启动</span>
|
</button>
|
</div>
|
<div style="display:none" class="col-sm-3">
|
<label>净重:</label>
|
<input type="text" readonly="readonly" id="net_wg" name="net_wg" >
|
<label>kg</label>
|
</div>
|
<div style="display:none" class="col-sm-3">
|
<label>选中:</label>
|
<!-- <label id="data_count" name="data_count"></label> -->
|
<input type="text" readonly="readonly" id="data_count" name="data_count" >
|
<label>条</label>
|
</div>
|
</form>
|
</div>
|
</div>
|
|
<div class="table-responsive">
|
<table id="test-table" class="table table-hover text-nowrap"></table>
|
</div>
|
|
</body>
|
</html>
|