270 lines
9.5 KiB
Plaintext
270 lines
9.5 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@ page import="com.sipai.tools.SessionManager"%>
|
|
<%
|
|
SessionManager sessionManager = new SessionManager();
|
|
%>
|
|
<%request.setAttribute("Flag_UNUSE",com.sipai.entity.material.Boardbatch.Flag_UNUSE);%>
|
|
<%request.setAttribute("Flag_INUSE",com.sipai.entity.material.Boardbatch.Flag_INUSE);%>
|
|
<%request.setAttribute("Flag_USED",com.sipai.entity.material.Boardbatch.Flag_USED);%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
|
<script type="text/javascript">
|
|
var grid;
|
|
var addFun = function() {
|
|
var dialog = parent.ext.modalDialog({
|
|
title : '添加网板批次信息',
|
|
url : ext.contextPath + '/material/boardbatch/add.do',
|
|
buttons : [ {
|
|
text : '保存',
|
|
handler : function() {
|
|
dialog.find('iframe').get(0).contentWindow.dosave(dialog, grid);
|
|
}
|
|
} ]
|
|
});
|
|
};
|
|
var viewFun = function(id) {
|
|
var dialog = parent.ext.modalDialog({
|
|
title : '查看网板批次信息',
|
|
url : ext.contextPath + '/material/boardbatch/view.do?id=' + id
|
|
});
|
|
};
|
|
var editFun = function(id) {
|
|
var dialog = parent.ext.modalDialog({
|
|
title : '编辑网板批次信息',
|
|
url : ext.contextPath + '/material/boardbatch/edit.do?id=' + id,
|
|
buttons : [ {
|
|
text : '保存',
|
|
handler : function() {
|
|
dialog.find('iframe').get(0).contentWindow.dosave(dialog, grid);
|
|
}
|
|
} ]
|
|
});
|
|
};
|
|
var deleteFun = function(id) {
|
|
parent.$.messager.confirm('提示', '您确定要删除此记录?', function(r) {
|
|
if (r) {
|
|
$.post(ext.contextPath + '/material/boardbatch/delete.do', {id : id}, function(data) {
|
|
if(data==1){
|
|
parent.$.messager.alert('提示','删除成功','info');
|
|
grid.datagrid('reload');
|
|
}else{
|
|
parent.$.messager.alert('提示','删除失败','info');
|
|
}
|
|
});
|
|
}
|
|
});
|
|
};
|
|
var deletesFun = function() {
|
|
var checkedItems = $('#grid').datagrid('getChecked');
|
|
var datas="";
|
|
$.each(checkedItems, function(index, item){
|
|
datas+=item.id+",";
|
|
});
|
|
if(datas==""){
|
|
top.$.messager.alert('提示', '请先选择要删除的记录','info');
|
|
}else{
|
|
parent.$.messager.confirm('提示', '您确定要删除此记录?', function(r) {
|
|
if (r) {
|
|
$.post(ext.contextPath + '/material/boardbatch/deletes.do', {ids:datas} , function(data) {
|
|
if(data>0){
|
|
parent.$.messager.alert('提示','成功删除'+data+'条记录','info');
|
|
grid.datagrid('reload');
|
|
grid.datagrid('clearChecked');
|
|
}else{
|
|
parent.$.messager.alert('提示','删除失败','info');
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
var importFun = function() {
|
|
var dialog = parent.ext.modalDialog({
|
|
title : '选择文件',
|
|
width: 600,
|
|
height:300,
|
|
closeOnEscape:true,
|
|
url : ext.contextPath + '/material/boardbatch/doimport.do',
|
|
buttons : [ {
|
|
text : '导入数据',
|
|
handler : function() {
|
|
dialog.find('iframe').get(0).contentWindow.doimport(dialog, grid);
|
|
}
|
|
} ]
|
|
});
|
|
};
|
|
|
|
$(function() {
|
|
grid = $('#grid').datagrid({
|
|
view: detailview,
|
|
detailFormatter:function(index,row){
|
|
return '<div style="padding:2px"><table class="ddv"></table></div>';
|
|
},
|
|
title : '',
|
|
url : ext.contextPath + '/material/boardbatch/getlist.do',
|
|
striped : true,
|
|
rownumbers : true,
|
|
pagination : true,
|
|
singleSelect: false,
|
|
ctrlSelect: true,
|
|
selectOnCheck: false,
|
|
checkOnSelect: false,
|
|
idField : 'id',
|
|
pageSize : 50,
|
|
pageList : [ 20, 50, 100],
|
|
frozenColumns:[[
|
|
{checkbox:true , field : 'ck'},
|
|
{width : '100', title : '网板批次号', field : 'no', sortable : true, halign:'center'},
|
|
{width : '90', title : '网板名称', field : 'name', sortable : true, halign:'center'},
|
|
{width : '80', title : '网板类别', field : 'type', sortable : true, halign:'center'},
|
|
{width : '60', title : '状态', field : 'status', sortable : true, halign:'center',formatter : function(value, row, index) {
|
|
switch (value) {
|
|
case '${Flag_UNUSE}':
|
|
return '未使用';
|
|
case '${Flag_INUSE}':
|
|
return '使用中';
|
|
case '${Flag_USED}':
|
|
return '使用完毕';
|
|
default:
|
|
return '';
|
|
}
|
|
}},
|
|
] ],
|
|
columns : [ [
|
|
{width : '180', title : '工艺路线', field : 'processrealid', sortable : true, halign:'center' },
|
|
{width : '130', title : '使用开始时间', field : 'starttime', sortable : true, halign:'center',formatter : function(value, row){
|
|
return value.substring(0,19);
|
|
} },
|
|
{width : '130', title : '使用结束时间', field : 'endtime', sortable : true, halign:'center',formatter : function(value, row){
|
|
return value.substring(0,19);
|
|
} },
|
|
{width : '60', title : '修改者', field : 'alteruser', sortable : true, halign:'center',formatter : function(value, row) {
|
|
value ='admin';
|
|
return value;
|
|
} },
|
|
{width : '130', title : '修改时间', field : 'alterdt', sortable : true, halign:'center',formatter : function(value, row){
|
|
return value.substring(0,19);
|
|
} },
|
|
{title : '操作', field : 'action', width : '120', halign:'center', align:'center', formatter : function(value, row) {
|
|
var str = '';
|
|
str += '<img class="iconImg ext-icon-table" title="查看" onclick="viewFun(\''+row.id+'\');"/>';
|
|
<%if (sessionManager.havePermission(session,"material/boardbatch/edit.do")) {%>
|
|
str += '<img class="iconImg ext-icon-table_edit" title="编辑" onclick="editFun(\''+row.id+'\');"/>';
|
|
<%}%>
|
|
<%if (sessionManager.havePermission(session,"material/boardbatch/delete.do")) {%>
|
|
str += '<img class="iconImg ext-icon-table_delete" title="删除" onclick="deleteFun(\''+row.id+'\');"/>';
|
|
<%}%>
|
|
return str;
|
|
}
|
|
}
|
|
] ],
|
|
toolbar : '#toolbar',
|
|
onLoadSuccess : function(data) {
|
|
$('.iconImg').attr('src', ext.pixel_0);
|
|
},
|
|
onExpandRow: function(index,prow){
|
|
ddv = $(this).datagrid('getRowDetail',index).find('table.ddv');
|
|
ddv.datagrid({
|
|
url:ext.contextPath + '/material/boardbatch/getMachine.do?pid='+prow.id,
|
|
fitColumns:true,
|
|
ctrlSelect:true,
|
|
singleSelect: false,
|
|
selectOnCheck: false,
|
|
checkOnSelect: false,
|
|
striped: true,
|
|
idField : 'id',
|
|
rownumbers:true,
|
|
//loadMsg:'',
|
|
height:'auto',
|
|
columns : [ [
|
|
{width : '140', title : '使用网板设备编号', field : 'equipmentcardid', sortable : true, halign:'center'},
|
|
{width : '140', title : '使用网板设备编号', field : 'equipmentname', sortable : true, halign:'center'},
|
|
{width : '85', title : '使用网板设备状态', field : 'ibmstatus', sortable : true, align:'center',halign:'center',formatter : function(value, row, index) {
|
|
switch (value) {
|
|
case '${Flag_UNUSE}':
|
|
return '未使用';
|
|
case '${Flag_INUSE}':
|
|
return '使用中';
|
|
case '${Flag_USED}':
|
|
return '使用完毕';
|
|
default:
|
|
return '';
|
|
}
|
|
}},
|
|
] ],
|
|
onResize:function(){
|
|
$('#grid').datagrid('fixDetailRowHeight',index);
|
|
},
|
|
onLoadSuccess:function(){
|
|
$('.iconImg').attr('src', ext.pixel_0);
|
|
setTimeout(function(){
|
|
$('#grid').datagrid('fixDetailRowHeight',index);
|
|
},0);
|
|
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body class="easyui-layout" data-options="fit:true,border:false">
|
|
<div id="toolbar" style="display: none;">
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<table>
|
|
<tr>
|
|
<%if (sessionManager.havePermission(session,"material/boardbatch/add.do")) {%>
|
|
<td>
|
|
<a href="javascript:void(0);" class="easyui-linkbutton" data-options="iconCls:'icon-add',plain:true"
|
|
onclick="addFun();">添加</a>
|
|
</td>
|
|
<%}%>
|
|
<%if (sessionManager.havePermission(session,"material/inkbatch/delete.do")) {%>
|
|
<td>
|
|
<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="importFun();">导入网板批次</a></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<form id="searchForm">
|
|
<input name="idStr" type="hidden" />
|
|
<table class="tooltable">
|
|
<tr>
|
|
<td>网板名称</td>
|
|
<td><input name="search_name" class="easyui-textbox" /></td>
|
|
<td>网板批次号</td>
|
|
<td><input name="search_no" class="easyui-textbox" /></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>
|
|
|