first commit
This commit is contained in:
131
bin/WebRoot/jsp/sfc/AGVTest.jsp
Normal file
131
bin/WebRoot/jsp/sfc/AGVTest.jsp
Normal file
@ -0,0 +1,131 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="../inc.jsp"></jsp:include>
|
||||
<script type="text/javascript">
|
||||
function routeRequest() {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/sfc/agv/routerequest.do", $(".form").serialize(), function(data) {
|
||||
if (data!=null) {
|
||||
alert('testResult: '+data);
|
||||
|
||||
}else{
|
||||
top.$.messager.alert('提示', data, 'info');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
function statusRequest() {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/sfc/agv/statusrequest.do", $(".form").serialize(), function(data) {
|
||||
if (data!=null) {
|
||||
alert('testResult: '+data);
|
||||
|
||||
}else{
|
||||
top.$.messager.alert('提示', data, 'info');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
function socketsend() {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/sfc/agv/socketsend.do", $(".form").serialize(), function(data) {
|
||||
if (data!=null) {
|
||||
alert('testResult: '+data);
|
||||
|
||||
}else{
|
||||
top.$.messager.alert('提示', data, 'info');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
//自己测试用,和科钛测要注释掉
|
||||
//本网页再次打开后台会报错,原因服务端只能启用一次
|
||||
// $(function(){
|
||||
// $.post(ext.contextPath + "/sfc/agv/startsocketserverdemo.do");//自建服务端,测试用
|
||||
// });
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" class="form">
|
||||
<div class="easyui-panel" title="Webservice接口" style="padding:0px; width:100%" data-options="collapsible:true">
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th >AGV系统webservice接口函数地址URL</th>
|
||||
<td ><input id="address" name="address" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >AGV系统webservice接口函数命名空间</th>
|
||||
<td ><input id="namespace" name="namespace" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >AGV系统webservice接口方法名</th>
|
||||
<td ><input id="funcname" name="funcname" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >A点</th>
|
||||
<td ><input id="pointa" name="pointa" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
<!-- ,<input id="pointay" name="pointay" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" /> -->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >B点</th>
|
||||
<td ><input id="pointb" name="pointb" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
<!-- ,<input id="pointby" name="pointby" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" /> -->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >需求时间</th>
|
||||
<td ><input id="t" name="t" class="Wdate" value=""
|
||||
onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm'})" readonly/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >指定AGV</th>
|
||||
<td ><input id="carNo" name="carNo" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >指定规则</th>
|
||||
<td ><input id="rules" name="rules" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >请求AGV调度</th>
|
||||
<td ><a href="#" class="easyui-linkbutton" onclick="routeRequest();" >下发路线请求</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >查询状态类型</th>
|
||||
<td ><input id="statustype" name="statustype" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >请求AGV状态</th>
|
||||
<td ><a href="#" class="easyui-linkbutton" onclick="statusRequest();" >下发状态请求</a></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
<br />
|
||||
<div class="easyui-panel" title="Socket接口" style="padding:0px; width:100%" data-options="collapsible:true">
|
||||
<tr>
|
||||
<th >服务端地址IP</th>
|
||||
<td ><input id="serveraddress" name="serveraddress" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" /></td>
|
||||
<th >端口号</th>
|
||||
<td ><input id="serverport" name="serverport" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" /></td>
|
||||
<th >发数据</th>
|
||||
<td ><input id="sentinfo" name="sentinfo" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
<a href="#" class="easyui-linkbutton" onclick="socketsend();" >发数据</a>
|
||||
</td>
|
||||
</tr>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
134
bin/WebRoot/jsp/sfc/AlarmdataList.jsp
Normal file
134
bin/WebRoot/jsp/sfc/AlarmdataList.jsp
Normal file
@ -0,0 +1,134 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||||
<%@page import="java.util.Date" %>
|
||||
<%@page import="java.text.SimpleDateFormat" %>
|
||||
<%@ page import="com.sipai.tools.SessionManager"%>
|
||||
<%
|
||||
SessionManager sessionManager = new SessionManager();
|
||||
%>
|
||||
<%String contextPath = request.getContextPath();%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
||||
|
||||
<script type="text/javascript" src="<%=contextPath%>/JS/datagrid-dnd.js"></script>
|
||||
<script type="text/javascript">
|
||||
var grid;
|
||||
|
||||
$(function() {
|
||||
grid = $('#grid').datagrid({
|
||||
title : '',
|
||||
url : ext.contextPath + '/sfc/alarmdata/getlist.do',
|
||||
striped : true,
|
||||
rownumbers : true,
|
||||
pagination : true,
|
||||
ctrlSelect:true,
|
||||
singleSelect: false,
|
||||
selectOnCheck: false,
|
||||
checkOnSelect: false,
|
||||
idField : 'id',
|
||||
pageSize : 50,
|
||||
pageList : [ 20, 50, 100],
|
||||
selectOnCheck: true,
|
||||
columns : [ [
|
||||
{checkbox:true , field : 'ck'},
|
||||
{width : '120', title : '数据插入时间', field : 'insdt', sortable : true, halign:'center',formatter:function(value){
|
||||
return value.substring(0,19);
|
||||
}
|
||||
},
|
||||
{width : '80', title : '报警类型', field : 'alarmtype', sortable : true, halign:'center'},
|
||||
{width : '120', title : '设备编号', field : 'equipmentno', sortable : true, halign:'center'},
|
||||
{width : '120', title : '报警日期', field : 'alarmdate', sortable : true, halign:'center',formatter:function(value){
|
||||
return value.substring(0,19);
|
||||
}
|
||||
},
|
||||
{width : '180', title : '报警内容', field: 'content', sortable : true, halign:'center'},
|
||||
{width : '80', title : '备注', field : 'operator', sortable : false, halign:'center'}
|
||||
|
||||
|
||||
] ],
|
||||
toolbar : '#toolbar',
|
||||
onLoadSuccess : function(data) {
|
||||
$('.iconImg').attr('src', ext.pixel_0);
|
||||
//$(this).datagrid('enableDnd');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function formattime(val) {
|
||||
var year = parseInt(val.year) + 1900;
|
||||
var month = (parseInt(val.month) + 1);
|
||||
month = month > 9 ? month : ('0' + month);
|
||||
var date = parseInt(val.date);
|
||||
date = date > 9 ? date : ('0' + date);
|
||||
var hours = parseInt(val.hours);
|
||||
hours = hours > 9 ? hours : ('0' + hours);
|
||||
var minutes = parseInt(val.minutes);
|
||||
minutes = minutes > 9 ? minutes : ('0' + minutes);
|
||||
var seconds = parseInt(val.seconds);
|
||||
seconds = seconds > 9 ? seconds : ('0' + seconds);
|
||||
var time = year + '-' + month + '-' + date + ' ' + hours + ':'
|
||||
+ minutes + ':' + seconds;
|
||||
return time;
|
||||
}
|
||||
function allow(){
|
||||
grid.datagrid('enableDnd');
|
||||
//grid.datagrid('reload');
|
||||
}
|
||||
function notallow(){
|
||||
grid.datagrid('reload');
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body class="easyui-layout" data-options="fit:true,border:false">
|
||||
<div id="toolbar" style="display: none;">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<!-- <td> -->
|
||||
<!-- <%if (sessionManager.havePermission(session,"equipment/addGeographyArea.do")) {%> -->
|
||||
<!-- <a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'icon-add',plain:true" -->
|
||||
<!-- onclick="addFun();">添加</a> -->
|
||||
<!-- <%}%> -->
|
||||
<!-- </td> -->
|
||||
<!-- <td> -->
|
||||
<!-- <%if (sessionManager.havePermission(session,"equipment/deleteGeographyArea.do")) {%> -->
|
||||
<!-- <a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'icon-remove',plain:true" -->
|
||||
<!-- onclick="deletesFun();">删除</a> -->
|
||||
<!-- <%}%> -->
|
||||
<!-- </td> -->
|
||||
<!-- <td><div class="datagrid-btn-separator"></div></td>
|
||||
<td><a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'ext-icon-table_add',plain:true" onclick="">导入</a></td>
|
||||
<td><a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'ext-icon-table_go',plain:true" onclick="">导出</a></td> -->
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<form id="searchForm">
|
||||
<table>
|
||||
<tr>
|
||||
<td>名称</td>
|
||||
<td><input name="search_equipmentno" class="easyui-textbox" style="width: 180px;" /></td>
|
||||
<td>
|
||||
<a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'ext-icon-search',plain:true"
|
||||
onclick="grid.datagrid('load',ext.serializeObject($('#searchForm')));">搜索</a>
|
||||
<a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'icon-reload',plain:true"
|
||||
onclick="$('#searchForm').form('clear');grid.datagrid('load',{});">重置</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div data-options="region:'center',fit:true,border:false">
|
||||
<table id="grid" data-options="fit:true,border:false"></table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
143
bin/WebRoot/jsp/sfc/AoidataList.jsp
Normal file
143
bin/WebRoot/jsp/sfc/AoidataList.jsp
Normal file
@ -0,0 +1,143 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||||
<%@page import="java.util.Date" %>
|
||||
<%@page import="java.text.SimpleDateFormat" %>
|
||||
<%@ page import="com.sipai.tools.SessionManager"%>
|
||||
<%
|
||||
SessionManager sessionManager = new SessionManager();
|
||||
%>
|
||||
<%String contextPath = request.getContextPath();%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
||||
|
||||
<script type="text/javascript" src="<%=contextPath%>/JS/datagrid-dnd.js"></script>
|
||||
<script type="text/javascript">
|
||||
var grid;
|
||||
|
||||
$(function() {
|
||||
grid = $('#grid').datagrid({
|
||||
title : '',
|
||||
url : ext.contextPath + '/sfc/aoidata/getlist.do',
|
||||
striped : true,
|
||||
rownumbers : true,
|
||||
pagination : true,
|
||||
ctrlSelect:true,
|
||||
singleSelect: false,
|
||||
selectOnCheck: false,
|
||||
checkOnSelect: false,
|
||||
idField : 'id',
|
||||
pageSize : 50,
|
||||
pageList : [ 20, 50, 100],
|
||||
selectOnCheck: true,
|
||||
columns : [ [
|
||||
{checkbox:true , field : 'ck'},
|
||||
{width : '120', title : '数据插入时间', field : 'insdt', sortable : true, halign:'center',formatter:function(value){
|
||||
return value.substring(0,19);
|
||||
}
|
||||
},
|
||||
{width : '100', title : '设备编号', field : 'equipmentno', sortable : true, halign:'center'},
|
||||
{width : '120', title : '日期起始', field : 'productiondatestart', sortable : true, halign:'center',formatter:function(value){
|
||||
return value.substring(0,19);
|
||||
}
|
||||
},
|
||||
{width : '120', title : '日期截止', field : 'productiondateend', sortable : true, halign:'center',formatter:function(value){
|
||||
return value.substring(0,19);
|
||||
}
|
||||
},
|
||||
{width : '80', title : '备注', field : 'operator', sortable : false, halign:'center'},
|
||||
{width : '60', title : '序号', field: 'no', sortable : true, halign:'center'},
|
||||
{width : '60', title : '投入', field: 'input', sortable : true, halign:'center'},
|
||||
{width : '60', title : '产出', field: 'output', sortable : true, halign:'center'},
|
||||
{width : '60', title : '生产良率', field: 'pdgoodrate', sortable : true, halign:'center'},
|
||||
{width : '60', title : '二次良率', field: 'twotimerate', sortable : true, halign:'center'},
|
||||
{width : '60', title : '不良率', field: 'ngrate', sortable : true, halign:'center'},
|
||||
{width : '60', title : '异常频次', field: 'abnormalfrq', sortable : true, halign:'center'}
|
||||
|
||||
|
||||
] ],
|
||||
toolbar : '#toolbar',
|
||||
onLoadSuccess : function(data) {
|
||||
$('.iconImg').attr('src', ext.pixel_0);
|
||||
//$(this).datagrid('enableDnd');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function formattime(val) {
|
||||
var year = parseInt(val.year) + 1900;
|
||||
var month = (parseInt(val.month) + 1);
|
||||
month = month > 9 ? month : ('0' + month);
|
||||
var date = parseInt(val.date);
|
||||
date = date > 9 ? date : ('0' + date);
|
||||
var hours = parseInt(val.hours);
|
||||
hours = hours > 9 ? hours : ('0' + hours);
|
||||
var minutes = parseInt(val.minutes);
|
||||
minutes = minutes > 9 ? minutes : ('0' + minutes);
|
||||
var seconds = parseInt(val.seconds);
|
||||
seconds = seconds > 9 ? seconds : ('0' + seconds);
|
||||
var time = year + '-' + month + '-' + date + ' ' + hours + ':'
|
||||
+ minutes + ':' + seconds;
|
||||
return time;
|
||||
}
|
||||
function allow(){
|
||||
grid.datagrid('enableDnd');
|
||||
//grid.datagrid('reload');
|
||||
}
|
||||
function notallow(){
|
||||
grid.datagrid('reload');
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body class="easyui-layout" data-options="fit:true,border:false">
|
||||
<div id="toolbar" style="display: none;">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<!-- <td> -->
|
||||
<!-- <%if (sessionManager.havePermission(session,"equipment/addGeographyArea.do")) {%> -->
|
||||
<!-- <a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'icon-add',plain:true" -->
|
||||
<!-- onclick="addFun();">添加</a> -->
|
||||
<!-- <%}%> -->
|
||||
<!-- </td> -->
|
||||
<!-- <td> -->
|
||||
<!-- <%if (sessionManager.havePermission(session,"equipment/deleteGeographyArea.do")) {%> -->
|
||||
<!-- <a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'icon-remove',plain:true" -->
|
||||
<!-- onclick="deletesFun();">删除</a> -->
|
||||
<!-- <%}%> -->
|
||||
<!-- </td> -->
|
||||
<!-- <td><div class="datagrid-btn-separator"></div></td>
|
||||
<td><a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'ext-icon-table_add',plain:true" onclick="">导入</a></td>
|
||||
<td><a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'ext-icon-table_go',plain:true" onclick="">导出</a></td> -->
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<form id="searchForm">
|
||||
<table>
|
||||
<tr>
|
||||
<td>名称</td>
|
||||
<td><input name="search_equipmentno" class="easyui-textbox" style="width: 180px;" /></td>
|
||||
<td>
|
||||
<a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'ext-icon-search',plain:true"
|
||||
onclick="grid.datagrid('load',ext.serializeObject($('#searchForm')));">搜索</a>
|
||||
<a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'icon-reload',plain:true"
|
||||
onclick="$('#searchForm').form('clear');grid.datagrid('load',{});">重置</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div data-options="region:'center',fit:true,border:false">
|
||||
<table id="grid" data-options="fit:true,border:false"></table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
113
bin/WebRoot/jsp/sfc/WarehouseTest.jsp
Normal file
113
bin/WebRoot/jsp/sfc/WarehouseTest.jsp
Normal file
@ -0,0 +1,113 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="../inc.jsp"></jsp:include>
|
||||
<script type="text/javascript">
|
||||
function RFIDResultsend() {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/sfc/warehouse/rfidresultsend.do", $(".form").serialize(), function(data) {
|
||||
if (data!=null) {
|
||||
alert('testResult: '+data);
|
||||
|
||||
}else{
|
||||
top.$.messager.alert('提示', data, 'info');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
function inRequest() {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/sfc/warehouse/inrequest.do", $(".form").serialize(), function(data) {
|
||||
if (data!=null) {
|
||||
alert('testResult: '+data);
|
||||
|
||||
}else{
|
||||
top.$.messager.alert('提示', data, 'info');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
function outRequest() {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/sfc/warehouse/outrequest.do", $(".form").serialize(), function(data) {
|
||||
if (data!=null) {
|
||||
alert('testResult: '+data);
|
||||
|
||||
}else{
|
||||
top.$.messager.alert('提示', data, 'info');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
function storageRequest() {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/sfc/warehouse/storagerequest.do", $(".form").serialize(), function(data) {
|
||||
if (data!=null) {
|
||||
alert('testResult: '+data);
|
||||
|
||||
}else{
|
||||
top.$.messager.alert('提示', data, 'info');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" class="form">
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th >立库系统webservice接口函数地址</th>
|
||||
<td ><input id="address" name="address" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >AGV系统webservice接口函数命名空间</th>
|
||||
<td ><input id="namespace" name="namespace" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >AGV系统webservice接口方法名</th>
|
||||
<td ><input id="funcname" name="funcname" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >入库物料信息</th>
|
||||
<td ><input id="inmaterial" name="inmaterial" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" />
|
||||
<a href="#" class="easyui-linkbutton" onclick="RFIDResultsend();" >发送RFID物料信息</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >入库物料信息datajson</th>
|
||||
<td ><input id="datajson" name="datajson" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >入库物料信息entryjson</th>
|
||||
<td ><input id="entryjson" name="entryjson" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" />
|
||||
<a href="#" class="easyui-linkbutton" onclick="inRequest();" >请求入库</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >出库物料信息</th>
|
||||
<td ><input id="outmaterial" name="outmaterial" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;width:60%" value="" />
|
||||
<a href="#" class="easyui-linkbutton" onclick="outRequest();" >请求出库</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th >请求查询库存信息-盒子号</th>
|
||||
<td ><input id="boxnumber" name="boxnumber" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<th >请求查询库存信息-类型</th>
|
||||
<td ><input id="type" name="type" class="easyui-textbox" data-options="required:false,validType:'isBlank'" style="overflow:auto;" value="" />
|
||||
<a href="#" class="easyui-linkbutton" onclick="storageRequest();" >下发询问库位</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user