一厂MES,含注塑,喷涂,冲孔
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.

180 lines
7.4 KiB

1 week ago
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BarCodeRecord.aspx.cs" Inherits="MESWebSite.Manage.BarCodeRecord" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="/CSS/Basics.css" rel="stylesheet" />
<link href="/Scripts/jquery-easyui-1.4.3/themes/metro/easyui.css" rel="stylesheet" type="text/css" />
<link href="/Scripts/jquery-easyui-1.4.3/themes/icon.css" rel="stylesheet" type="text/css" />
<link href="/Scripts/jquery-easyui-1.4.3/themes/color.css" rel="stylesheet" type="text/css" />
<script src="/Scripts/jquery-easyui-1.4.3/jquery.min.js" type="text/javascript"></script>
<script src="/Scripts/jquery-easyui-1.4.3/jquery.easyui.min.js" type="text/javascript"></script>
<script src="/Scripts/jquery-easyui-1.4.3/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
<script src="/Scripts/MyJs.js" type="text/javascript"></script>
<style>
#w td {
padding: 5px 5px;
text-align: left;
vertical-align: middle;
}
#w .title {
vertical-align: middle;
text-align: right;
width: 80px;
height: 40px;
}
p {
padding: 5px;
font-size: small;
font-family: 微软雅黑;
}
.datagrid {
text-align: center;
}
</style>
<title>注塑条码打印查询</title>
</head>
<body>
<form id="form1" runat="server">
<div class="top">
<table style="width: 100%">
<tr style="display: flex ;flex-direction: row; flex-wrap: wrap;">
<td><span class="title">条码查询</span>
</td>
<td style="width: 260px;">机台:
<select id="fl_id_s" class="easyui-combobox" style="width: 160px; height: 30px;"
data-options="valueField: 'StationID',textField: 'StationNo'">
</select></td>
<td style="width: 260px;">条码:
<input type="text" id="barcode" style="width: 140px;" /></td>
<td style="width: 500px;">时间:
<input id="StartTime_s"class="easyui-datetimebox" data-options="onShowPanel:function(){ $(this).datetimebox('spinner').timespinner('setValue','00:00:00');}" />&nbsp;至&nbsp;
<input id="EndTime_s" class="easyui-datetimebox" data-options="onShowPanel:function(){ $(this).datetimebox('spinner').timespinner('setValue','23:59:59');}" />
</td>
<td style="width: 80px;"><a class="topsearchBtn" id="searchBtn1">查询</a></td>
</tr>
</table>
</div>
<table id="tb" title="注塑条码打印记录" style="width: 99%;">
</table>
<input id="UserID" type="text" hidden="hidden" runat="server" />
<script>
/**************** 全局变量 ***************/
var PrimaryID; //要编辑的id
var dg = $('#tb'); //表格
var isEdit = false; //是否为编辑状态
/**************** DOM加载 ***************/
$(function() {
$.ajaxSetup({
cache: false //关闭AJAX缓存
});
reloadfl_ids();
var curr_time = new Date();
var str = curr_time.getFullYear() + "-";
str += curr_time.getMonth() + 1 + "-";
str += curr_time.getDate();
$('#StartTime_s').datetimebox('setValue', str + " 08:00:00");
$('#EndTime_s').datetimebox('setValue', str + " 20:00:00");
//查询
$('#searchBtn1').first().click(function () {
SearchInfo1();
});
dg = $('#tb').datagrid({
fitColumns: true,
nowrap: false,
striped: true,
collapsible: false,
url: "/HttpHandlers/BarCodeReportnHandler.ashx?method=QueryList",
remoteSort: false,
columns: [[
{ field: 'StationID', title: 'StationID', hidden: true },
{ field: 'StationNo', title: '机台', width: 10 },
{ field: 'OneBarCode', title: '一维码', width: 10 },
{ field: 'BarCode', title: '二维码', width: 10 },
{
field: 'PrintType', title: '打印类型', width: 10,
formatter: function (value, row, index) {
if (value == 0) {
return "自动打印";
}
else if (value == 1) {
return "手工打印";
}
else if (value == 2) {
return "补打";
}
}
},
{
field: 'Weight', title: '重量', width: 10,
formatter: function (value, row, index) {
if (value == "") {
return "";
} else {
return value;
}
}
},
{ field: 'CreateTime', title: '打印时间', width: 10 }
]],
pagination: true,//表示在datagrid设置分页
rownumbers: true,
singleSelect: true
});
dg.datagrid('getPager').pagination({
pageSize: 10,
pageNumber: 1,
pageList: [10, 20, 30, 40, 50],
beforePageText: '第',//页数文本框前显示的汉字
afterPageText: '页 共 {pages} 页',
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录',
});
});
/**************** 主要业务程序 ***************/
//查询方法
function SearchInfo1() {
var StationID = $('#fl_id_s').combobox('getValue');
var barcode = $('#barcode').val();
var startTime = $('#StartTime_s').datetimebox('getValue');
var endTime = $('#EndTime_s').datetimebox('getValue');
var queryParams = {
StationID: StationID,
barcode: barcode,
startTime: startTime,
endTime: endTime
};
dg.datagrid({
queryParams: queryParams
});
dg.datagrid('reload');
}
function reloadfl_ids() {
$('#fl_id_s').combobox('reload', '/HttpHandlers/StationHandler.ashx?method=QueryForCombobox&StationNo=IM');
}
</script>
</form>
</body>
</html>