You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
4.1 KiB
105 lines
4.1 KiB
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="icon" href="/favicon.ico">
|
|
<title>${projectTitle!"MESPda"}</title>
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="/pda/bootstrap/3.3.7/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/pda/bootstrap/3.3.7/bootstrap-theme.min.css" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
href="/pda/jeasyui/themes/default/easyui.css">
|
|
<link rel="stylesheet" type="text/css" href="/pda/jeasyui/themes/icon.css">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href="/pda/css/base.css" rel="stylesheet">
|
|
<link rel="stylesheet" type="text/css" href="/css/button.css">
|
|
<style type="text/css">
|
|
/* reset ivu-btn*/
|
|
.ivu-btn{
|
|
padding: 6px 6px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<input type="hidden" id="flag" value="${Session.flag!'N'}">
|
|
<input type="hidden" id="supplierId" value="${Session.supplierId!'N'}">
|
|
<div class="mint-tab-container screenHeight">
|
|
<header class="mint-header is-fixed">
|
|
<div class="mint-header-button is-left">
|
|
<div class="header-title">
|
|
<a onclick="goBack()" class="go-back"><i class="mintui mintui-back"></i></a>
|
|
<span>融欣MES - 收货采购订单</span>
|
|
</div>
|
|
</div>
|
|
<h1 class="mint-header-title"></h1>
|
|
<div class="mint-header-button is-right"></div>
|
|
</header>
|
|
<form autocomplete="off" class="ivu-form ivu-form-label-right">
|
|
<div class="ivu-form-item">
|
|
<label class="ivu-form-item-label" style="width: 90px;">请扫描卷号</label>
|
|
<div class="ivu-form-item-content" style="margin-left: 90px;">
|
|
<div class="ivu-input-wrapper ivu-input-type">
|
|
<textarea autocomplete="off" spellcheck="false" id="rollNo"
|
|
placeholder="请扫描卷号..." rows="2" autofocus="autofocus"
|
|
class="ivu-input"
|
|
style="height: 52px; min-height: 52px; max-height: 52px;"></textarea>
|
|
</div>
|
|
<!---->
|
|
</div>
|
|
</div>
|
|
<div class="ivu-form-item">
|
|
<input type="hidden" id="cache_order_ref1" value="${Session.order_ref1!'' }" >
|
|
<input type="hidden" id="cache_order_ref3" value="${Session.order_ref3!'' }" >
|
|
<input type="hidden" id="cache_site" value="${Session.site!'' }" >
|
|
<input type="hidden" id="cache_flag" value="${Session.cache_flag!'N' }" >
|
|
<label class="ivu-form-item-label" style="width: 78px;">接收仓库</label>
|
|
<input type="hidden" id="select_depot" value="${Session.depot!'' }" >
|
|
<div class="ivu-form-item-content" style="margin-left: 90px;">
|
|
<select class="webui-combobox" id="depot"
|
|
data-options="editable:false" style="margin-left: 10px;width:80px;height: 30px;">
|
|
<#list depots! as temp>
|
|
<option value="${temp.mark! }">${temp.mark! }</option>
|
|
</#list >
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="ivu-row" id="rollCounts">
|
|
<div class="r-left" style="margin:0px;">已扫描记录</div>
|
|
|
|
</div>
|
|
<div class="ivu-row" style="margin-top: 10px;">
|
|
<div class="ivu-col ivu-col-span-13">
|
|
<a href="/pda/receipt/getUnlistedRolls" class="ivu-btn ivu-btn-primary">
|
|
<span>未入库卷号清单</span>
|
|
</a>
|
|
</div>
|
|
<div class="ivu-col ivu-col-span-5">
|
|
<button type="button" onclick="endScan()" class="ivu-btn ivu-btn-primary">
|
|
<span>结束</span>
|
|
</button>
|
|
</div>
|
|
<div class="ivu-col ivu-col-span-5">
|
|
<button onclick="goBack()" class="ivu-btn ivu-btn-primary">
|
|
<span>返回</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
|
|
<script type="text/javascript" src="/pda/layer/layer.js"></script>
|
|
<script type="text/javascript" src="/pda/js/receipt/receipt_order.js"></script>
|
|
<script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
|
|
</html>
|