一厂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.

430 lines
16 KiB

1 week ago
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="InjectionWasteRecord.aspx.cs" Inherits="MESWebSite.Manage.InjectionWasteRecord" %>
<!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 cellpadding="0" cellspacing="0" style="width: 100%">
<thead>
<tr>
<td><span class="title">注塑浇口废料信息</span></td>
</tr>
</thead>
<tbody>
<tr>
<td style="width: 415px;">机台:
<select id="fl_id_s" class="easyui-combobox" style="width: 160px; height: 30px;"
data-options="valueField: 'StationID',textField: 'StationNo'">
</select>
&nbsp;&nbsp;时间:
<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');}" />
&nbsp;&nbsp;
<a class="topsearchBtn">查询</a>
&nbsp;&nbsp;
<a class="toppenBtn">编辑浇口废料信息</a>
</td>
</tr>
</tbody>
</table>
</div>
<table id="tb" title="浇口废料信息" style="width: 99%;">
</table>
<!-- 编辑窗口 -->
<div id="w" style="padding: 10px; visibility: hidden" title="编辑">
<table cellpadding="0" cellspacing="0">
<tr>
<td class="title" style="width: 110px;">
<p>
机台:
</p>
</td>
<td colspan="2">
<select id="fl_id" class="easyui-combobox" style="width: 234px; height: 36px;"
data-options="valueField: 'StationID',textField: 'StationNo'" disabled>
</select>
</td>
</tr>
<tr>
<td class="title" style="width: 110px;">
<p>
配置:
</p>
</td>
<td colspan="2">
<select id="fl_id_p" class="easyui-combobox" style="width: 234px; height: 36px;"
data-options="valueField: 'c_id',textField: 'c_name'" disabled>
</select>
</td>
</tr>
<tr>
<td class="title" style="width: 110px;">
<p>
零件号:
</p>
</td>
<td colspan="2">
<input id="PartNo" type="text" class="text" style="width: 230px; height: 30px;" disabled />
</td>
</tr>
<tr>
<td class="title" style="width: 110px;">
<p>
班次:
</p>
</td>
<td colspan="2">
<input id="workClass" type="text" class="text" style="width: 230px; height: 30px;" disabled />
</td>
</tr>
<tr>
<td class="title" style="width: 110px;">
<p>
实际周期(秒):
</p>
</td>
<td colspan="2">
<input id="RealCycle" type="number" style="width: 234px; height: 36px;" value="0" />
</td>
</tr>
<tr>
<td class="title" style="width: 110px;">
<p>
浇口重量(kg):
</p>
</td>
<td colspan="2">
<input id="JK_Weight" type="number" style="width: 234px; height: 36px;" value="0" />
</td>
</tr>
<tr>
<td class="title" style="width: 110px;">
<p>
废料块重量(kg):
</p>
</td>
<td colspan="2">
<input id="Waste_Weight" type="number" class="text" style="width: 230px; height: 30px;" value="0" />
</td>
</tr>
</table>
</div>
<!-- 编辑窗口 - footer -->
<div id="ft" style="padding: 10px; text-align: center; background-color: #f9f9f9; visibility: hidden">
<a class="saveBtn" id="saveBtn">保存</a>
</div>
<div hidden="hidden">
<asp:Label ID="lblMessage" runat="server" Text=""></asp:Label>
</div>
<input id="UserID" type="text" hidden="hidden" runat="server" />
<script>
/**************** 全局变量 ***************/
var PrimaryID; //要编辑的id
var dg = $('#tb'); //表格
var isEdit = false; //是否为编辑状态
/**************** DOM加载 ***************/
$(function () {
var curr_time = new Date();
var str = curr_time.getFullYear() + "-";
str += curr_time.getMonth() + 1 + "-";
str += curr_time.getDate()
$('#StartTime_s').datetimebox('setValue', str + " 00:00:00");
$('#EndTime_s').datetimebox('setValue', str + " 23:59:59");
$.ajaxSetup({
cache: false //关闭AJAX缓存
});
$('#fl_id').combobox({
url: '/HttpHandlers/StationHandler.ashx?method=QueryForCombobox&StationNo=IM',
onLoadSuccess: function () {
},
onSelect: function (row) {
$('#fl_id_p').combobox('reload', '/HttpHandlers/PlasticHandler.ashx?method=QueryForCombobox&StationID=' + row.StationID);
}
});
$('#fl_id_p').combobox({
onSelect: function (record) {
$('#PartNo').val(record.c_text);
}
});
//下拉框加载
reloadfl_ids();
//新增按钮点击
$('.topaddBtn').first().click(function () {
isEdit = false;
$('#w').window('open');
});
//编辑按钮点击
$('.toppenBtn').first().click(function () {
isEdit = true;
initEidtWidget();
});
//删除按钮
$('.topdelBtn').first().click(function () {
$.messager.confirm('提示框', '你确定要删除吗?', function (r) {
if (r) {
deleteInfos();
}
});
});
//搜索按钮
$('.topsearchBtn').first().click(function () {
SearchInfo();
});
//保存按钮
$('#saveBtn').bind('click', function () {
SaveInfo(isEdit);
});
//编辑窗口加载
$('#w').window({
modal: true,
closed: true,
minimizable: false,
maximizable: false,
collapsible: false,
width: 460,
height: 780,
footer: '#ft',
top: 20,
onBeforeClose: function () { clearw(); },
onBeforeOpen: function () {
$('#w').css('visibility', 'visible'); $('#ft').css('visibility', 'visible');
reloadfl_id();
}
});
dg = $('#tb').datagrid({
fitColumns: true,
nowrap: false,
striped: true,
collapsible: false,
url: "/HttpHandlers/InjectionWasteRecordHandler.ashx?method=QueryList",
//sortName: 'sortNumber',
//sortOrder: 'asc',
remoteSort: false,
columns: [[
{ field: 'ID', title: 'ID', hidden: true },
{ field: 'StationID', title: '机台', hidden: true },
{ field: 'ProductDate', title: '生产日期', sortable: 'true', width: 10 },
{ field: 'StationNo', title: '机台', sortable: 'true', width: 10 },
{ field: 'ClassName', title: '班组', sortable: 'true', width: 10 },
{ field: 'StockNo', title: '存货代码', sortable: 'true', width: 10 },
{ field: 'PartNo', title: '零件号', sortable: 'true', width: 10 },
{ field: 'ProductCount', title: '生产数量', sortable: 'true', width: 10 },
{ field: 'RealCycle', title: '实际周期', sortable: 'true', width: 10 },
{ field: 'JK_Weight', title: '浇口重量', sortable: 'true', width: 10 },
{ field: 'Waste_Weight', title: '废料块重量', sortable: 'true', width: 10 }
]],
pagination: true,//表示在datagrid设置分页
rownumbers: true,
singleSelect: true
});
dg.datagrid('getPager').pagination({
pageSize: 20,
pageNumber: 1,
pageList: [10, 20, 30, 40, 50],
beforePageText: '第',//页数文本框前显示的汉字
afterPageText: '页 共 {pages} 页',
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录',
});
});
/**************** 主要业务程序 ***************/
//查询方法
function SearchInfo() {
var StationID = $('#fl_id_s').combobox('getValue');
var StartTime = $('#StartTime_s').datetimebox('getValue');
var EndTime = $('#EndTime_s').datetimebox('getValue');
if (StartTime == "") {
$.messager.alert('提示', '开始日期不能为空,请重新输入', 'warning');
return;
}
if (EndTime == "") {
$.messager.alert('提示', '结束日期不能为空,请重新输入', 'warning');
return;
}
var queryParams = {
StationID: StationID,
StartTime: StartTime,
EndTime: EndTime
};
dg.datagrid({
queryParams: queryParams,
pageSize: 20,
pageNumber: 1
});
dg.datagrid('reload');
}
//编辑时加载窗体数据
function initEidtWidget() {
var selRows = dg.datagrid('getSelections');
if (selRows.length > 1) {
$.messager.alert('提示', '每次只能编辑一条记录,请重新选取', 'warning');
return;
} else if (selRows.length == 0) {
$.messager.alert('提示', '请选择一条记录进行编辑', 'warning');
return;
}
//窗体数据初始化
var row = selRows[0];
PrimaryID = row.ID;
$('#fl_id').combobox('select', row.StationID);
$('#fl_id_p').combobox('select', row.StockNo);
$('#PartNo').val(row.PartNo);
$('#workClass').val(row.ClassName);
$('#RealCycle').val(row.RealCycle);
$('#JK_Weight').val(row.JK_Weight);
$('#Waste_Weight').val(row.Waste_Weight);
$('#w').window('open');
}
//新增 / 编辑
function SaveInfo(isEdit) {
var ID = isEdit == true ? PrimaryID : 0;
var RealCycle = $('#RealCycle').val();
var JK_Weight = $('#JK_Weight').val();
var Waste_Weight = $('#Waste_Weight').val();
var model = {
ID: ID,
RealCycle: RealCycle,
JK_Weight: JK_Weight,
Waste_Weight: Waste_Weight,
method: 'SaveInfo'
};
SaveModel(model);
}
function SaveModel(model) {
$.ajax({
type: "POST",
async: false,
url: "/HttpHandlers/InjectionWasteRecordHandler.ashx",
data: model,
success: function (data) {
if (data == 'true') {
$.messager.alert('提示', '已保存', 'info');
dg.datagrid('reload');
$('#w').window('close');
}
else {
$.messager.alert('提示', '保存失败,请查看是否编号重复', 'warning');
}
},
error: function () {
}
});
}
/**************** 辅助业务程序 ***************/
/**********************************************/
/***************** 窗体程序 *******************/
/**********************************************/
//编辑窗口关闭清空数据
function clearw() {
$('#fl_id').combobox('clear');
$('#fl_id_p').combobox('clear');
$('#PartNo').val('');
$('#RealCycle').val('');
$('#workClass').val('');
$('#JK_Weight').val(0);
$('#Waste_Weight').val(0);
}
function reloadfl_id() {
$('#fl_id').combobox('reload', '/HttpHandlers/StationHandler.ashx?method=QueryForCombobox&StationNo=IM');
}
function reloadfl_ids() {
$('#fl_id_s').combobox('reload', '/HttpHandlers/StationHandler.ashx?method=QueryForCombobox&StationNo=IM');
}
</script>
</form>
</body>
</html>