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

432 lines
16 KiB

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ModelProduct.aspx.cs" Inherits="MESWebSite.Manage.ModelProduct" %>
<!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>
<script src="/Scripts/jquery-easyui-1.4.3/datagrid-export.js"></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;
}
.auto-style1 {
width: 672px;
}
.search_first{
margin-left: 34%
}
/* 中等屏幕 桌面显示器 992至1400 */
@media screen and (min-width:992px) and (max-width:1400px){
.search_first{
margin-left: 2%
}
}
</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 style="width: 180px;"><span class="title">模具产品关系</span>
</td>
<td style="width: 100px;"></td>
<td style="width: 300px;">产品零件号:
<select id="prod_id_s" class="easyui-combobox" style="width: 160px; height: 30px;"
data-options="valueField: 'ProductID',textField: 'PartNo'">
</select>
</td>
<td style="width: 300px;"> 模具编号:
<select id="model_id_s" class="easyui-combobox" style="width: 160px; height: 30px;"
data-options="valueField: 'valueField',textField: 'textField'" >
</select>
</td>
<td style="width: 80px;"><a class="topsearchBtn">查询</a></td>
<td style="width: 80px">
<a class="topaddBtn">新增</a>
</td>
<td style="width: 80px">
<a class="toppenBtn">编辑</a>
</td>
<td style="width: 80px">
<a class="topdelBtn">删除</a>
</td>
<td style="width: 80px">
<a class="topexcelBtn" id="exportbtn">导出</a>
</td>
</tr>
</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="prod_id" class="easyui-combobox" style="width: 160px; height: 30px;"
data-options="valueField: 'ProductID',textField: 'PartNo'">
</select>
</td>
</tr>
<tr>
<td class="title" style="width: 110px;">
<p>
模具编号:
</p>
</td>
<td colspan="2">
<select id="model_id" class="easyui-combobox " style="width: 160px; height: 30px;"
data-options="valueField: 'valueField',textField: 'textField'" >
</select>
</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; //是否为编辑状态
var handlerUrl = "/HttpHandlers/ModelProductHandler.ashx";
/**************** DOM加载 ***************/
$(function () {
$.ajaxSetup({
cache: false //关闭AJAX缓存
});
// 下拉框加载
reload_prod_id('#prod_id_s');
reload_prod_id('#prod_id');
reload_color_combo('#model_id_s');
reload_color_combo('#model_id');
//$("#prod_id").combobox({editable:false});
//$("#model_id").combobox({editable:false});
//新增按钮点击
$('.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);
});
//导出按钮
$("#exportbtn").bind('click', function () {
var ProductName = $('#prod_id_s').combo('getValue');
var ModelNo = $('#model_id_s').combo('getValue');
var queryParams = {
ProductName: ProductName,
ModelNo: ModelNo
};
post('<%=ResolveUrl("~/HttpHandlers/ModelInfoHandler.ashx?method=QueryExcel") %>', queryParams);
});
//编辑窗口加载
$('#w').window({
modal: true,
closed: true,
minimizable: false,
maximizable: false,
collapsible: false,
width: 460,
height: 520,
footer: '#ft',
top: 20,
onBeforeClose: function () { clearw(); },
onBeforeOpen: function () {
$('#w').css('visibility', 'visible'); $('#ft').css('visibility', 'visible');
}
});
dg = $('#tb').datagrid({
fitColumns: true,
nowrap: false,
striped: true,
collapsible: false,
url: handlerUrl + "?method=QueryList",
//sortName: 'sortNumber',
//sortOrder: 'asc',
remoteSort: false,
columns: [[
{ field: 'ID', title: 'ID', hidden: true },
{ field: 'ProductName', title: '产品名称', sortable: 'true', width: 10 },
{ field: 'PartNo', title: '零件编号', sortable: 'true', width: 10 },
{ field: 'ModelNo', title: '模具编号', sortable: 'true', width: 10 },
{ field: 'ModelName', title: '模具名称', sortable: 'true', 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 SaveInfo(isEdit) {
var ID = isEdit == true ? PrimaryID : 0;
var ProductID = $('#prod_id').combo('getValue');
var ModelID = $('#model_id').combo('getValue');
if (ProductID == "") {
$.messager.alert('提示', '产品不能为空,请重新输入', 'warning');
return;
}
if (ModelID == "") {
$.messager.alert('提示', '模具不能为空,请重新输入', 'warning');
return;
}
if (checkComboBoxValue('prod_id', ProductID) == false) {
$.messager.alert('提示', '零件号有误,请重新输入', 'warning');
return;
}
if (checkComboBoxValue('model_id', ModelID) == false) {
$.messager.alert('提示', '模具号有误,请重新输入', 'warning');
return;
}
var model = {
ID,
ProductID,
ModelID,
method: 'SaveInfo'
};
SaveModel(model);
}
function SaveModel(model) {
$.ajax({
type: "POST",
async: false,
url: handlerUrl,
data: model,
success: function (data) {
if (data == 'true') {
$.messager.alert('提示', '已保存', 'info');
dg.datagrid('reload');
$('#w').window('close');
}
else {
$.messager.alert('提示', '保存失败,零件号或模具编号有误!', 'warning');
}
},
error: function () {
}
});
}
//查询方法
function SearchInfo() {
var ProductID = $('#prod_id_s').combo('getValue');
var ModelID = $('#model_id_s').combo('getValue');
dg.datagrid({
queryParams: { ProductID, ModelID }
});
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;
$('#prod_id').combobox('select', row.ProuctID);
$('#model_id').combobox('select', row.ModelID);
$('#w').window('open');
}
function checkComboBoxValue(id,value){
var valueField = $("#"+id).combobox("options").valueField;
var allData = $("#"+id).combobox("getData");
var result = false;
for (var i = 0; i < allData.length; i++) {
if (value == allData[i][valueField]) {
result = true;
break;
}
}
return result;
}
//删除方法
function deleteInfos() {
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];
var model = {
ID: row.ID,
method: 'DelInfo'
};
$.ajax({
url: handlerUrl,
data: model,
async: false,
success: function (data) {
if (data == 'true') {
$.messager.alert('提示', '已删除', 'info');
dg.datagrid('reload');
}
else {
$.messager.alert('提示', '由于有关联数据,删除失败', 'warning');
}
},
error: function () {
}
});
}
/**************** 辅助业务程序 ***************/
/**********************************************/
/***************** 窗体程序 *******************/
/**********************************************/
//编辑窗口关闭清空数据
function clearw() {
$('#prod_id').combo('clear');
$('#model_id').combo('clear');
}
/**
* 加载产品下拉信息
**/
function reload_prod_id(ctl) {
base_reload_combobox(ctl, '/HttpHandlers/ProductHandler.ashx?method=GetComboboxProduct2');
}
function reload_color_combo(ctl) {
base_reload_combobox(ctl, '/HttpHandlers/ModelInfoHandler.ashx?method=GetComboboxDataForModelNo');
}
function base_reload_combobox(ctl, url) {
$(ctl).combobox('reload', url);
}
function post(url, PARAMS) {
var temp_form = document.createElement("form");
temp_form.action = url;
temp_form.target = "_blank";
temp_form.method = "post";
temp_form.style.display = "none"; for (var x in PARAMS) {
var opt = document.createElement("textarea");
opt.name = x;
opt.value = PARAMS[x];
temp_form.appendChild(opt);
}
document.body.appendChild(temp_form);
temp_form.submit();
}
</script>
</form>
</body>
</html>