792 lines
32 KiB
Plaintext
792 lines
32 KiB
Plaintext
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||
<%@page import="java.util.Date" %>
|
||
<%@page import="java.text.SimpleDateFormat" %>
|
||
<%@ page import="com.sipai.tools.SessionManager"%>
|
||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
||
<%
|
||
SessionManager sessionManager = new SessionManager();
|
||
%>
|
||
<!DOCTYPE HTML>
|
||
<html>
|
||
<head>
|
||
<title></title>
|
||
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
||
<script type="text/javascript">
|
||
var grid;
|
||
var gridAll;
|
||
var invalidategrid;
|
||
var ddv;
|
||
var ddvall;
|
||
var ddvpid='${dailyplansummary.id }';
|
||
var addFun = function() {
|
||
var dialog = parent.ext.modalDialog({
|
||
iframeId:'add',
|
||
title : '新增日计划',
|
||
url : ext.contextPath + '/plan/dailyplan/add.do?iframeId=add&date=${param.sdt}&plandate=${dailyplansummary.plandt}&pid=${dailyplansummary.id }',
|
||
buttons : [
|
||
{
|
||
text : '保存',
|
||
handler : function() {
|
||
dialog.find('iframe').get(0).contentWindow.dosave(dialog, grid);
|
||
}
|
||
},
|
||
{
|
||
text : '下发',
|
||
handler : function() {
|
||
dialog.find('iframe').get(0).contentWindow.dodistribute(dialog, grid);
|
||
}
|
||
}
|
||
|
||
]
|
||
});
|
||
};
|
||
var viewFun = function(id) {
|
||
//grid.datagrid('clearChecked');
|
||
var dialog = parent.ext.modalDialog({
|
||
width: 800,
|
||
height:600,
|
||
title : '查看日计划',
|
||
url : ext.contextPath + '/plan/dailyplan/view.do?id=' + id,
|
||
buttons : [ {
|
||
text : '确认完成',
|
||
handler : function() {
|
||
dialog.find('iframe').get(0).contentWindow.dofinish(dialog, grid);
|
||
}
|
||
}]
|
||
});
|
||
grid.datagrid('reload');
|
||
gridAll.datagrid('reload');
|
||
};
|
||
var doedit = function() {
|
||
var dialog = parent.ext.modalDialog({
|
||
width: 480,
|
||
height:320,
|
||
title : '编辑日计划汇总信息',
|
||
url : ext.contextPath + '/plan/dailyplansummary/edit.do?id=${dailyplansummary.id }'+'&iframeId=${param.iframeId}',
|
||
buttons : [ {
|
||
text : '保存',
|
||
handler : function() {
|
||
dialog.find('iframe').get(0).contentWindow.dosave(dialog);
|
||
}
|
||
} ]
|
||
});
|
||
};
|
||
var doaudit = function() {
|
||
var dialog = parent.ext.modalDialog({
|
||
iframeId:'audit',
|
||
width: 480,
|
||
height:320,
|
||
title : '审核日计划汇总信息',
|
||
url : ext.contextPath + '/plan/dailyplansummary/audit.do?id=${dailyplansummary.id }'+'&iframeId=${param.iframeId}'+'&iframeId=audit',
|
||
buttons : [ {
|
||
text : '保存',
|
||
handler : function() {
|
||
dialog.find('iframe').get(0).contentWindow.dosave(dialog);
|
||
}
|
||
} ]
|
||
});
|
||
};
|
||
var editFun = function(id) {
|
||
var dialog = parent.ext.modalDialog({
|
||
iframeId:'edit',
|
||
width: 800,
|
||
height:620,
|
||
title : '编辑日计划',
|
||
url : ext.contextPath + '/plan/dailyplan/edit.do?id=' + id+'&iframeId=edit',
|
||
buttons : [ {
|
||
text : '保存',
|
||
handler : function() {
|
||
dialog.find('iframe').get(0).contentWindow.dosave(dialog, grid);
|
||
}
|
||
},
|
||
{
|
||
text : '下发',
|
||
handler : function() {
|
||
dialog.find('iframe').get(0).contentWindow.dodistribute(dialog, grid);
|
||
}
|
||
} ]
|
||
});
|
||
};
|
||
var deleteFun = function(id) {
|
||
parent.$.messager.confirm('提示', '您确定要删除此记录?计划删除后将自动作废。', function(r) {
|
||
if (r) {
|
||
$.post(ext.contextPath + '/plan/dailyplan/delete.do', {id : id}, function(data) {
|
||
if(data==1){
|
||
top.$.messager.alert('提示','删除成功','info');
|
||
grid.datagrid('reload');
|
||
}else{
|
||
top.$.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{
|
||
top.$.messager.confirm('提示', '您确定要删除多条记录?即将删除所选单号下所有计划,计划删除后将自动作废。', function(r) {
|
||
if (r) {
|
||
$.post(ext.contextPath + '/plan/dailyplan/deletes.do', {ids:datas} , function(data) {
|
||
if(data>0){
|
||
top.$.messager.alert('提示','成功删除'+data+'条记录','info');
|
||
grid.datagrid('reload');
|
||
grid.datagrid('clearChecked');
|
||
}else{
|
||
top.$.messager.alert('提示','删除失败','info');
|
||
}
|
||
});
|
||
}
|
||
});
|
||
}
|
||
};
|
||
|
||
var flag=0;
|
||
$(function() {
|
||
grid = $('#grid').datagrid({
|
||
view: detailview,
|
||
detailFormatter:function(index,row){
|
||
return '<div style="padding:2px"><table class="ddv"></table></div>';
|
||
},
|
||
title : '',
|
||
url : ext.contextPath + '/plan/dailyplan/getlist.do',
|
||
queryParams: {
|
||
pid: '${dailyplansummary.id }'
|
||
},
|
||
striped : true,
|
||
rownumbers : true,
|
||
pagination : true,
|
||
singleSelect: true,
|
||
ctrlSelect:true,
|
||
selectOnCheck: false,
|
||
checkOnSelect: false,
|
||
idField : 'id',
|
||
pageSize : 50,
|
||
pageList : [ 20, 50, 100],
|
||
columns : [ [
|
||
{checkbox:true , field : 'ck'},
|
||
{width : '250', title : '销售订单号', field : 'salesorderno', sortable : true, halign:'center',sortable:true},
|
||
{width : '290', title : '产品名称', field : 'product', sortable : true, halign:'center',formatter : function(value,row){
|
||
if(value!=null){
|
||
return value.materialname;
|
||
}else{
|
||
return value;
|
||
}
|
||
},sortable:false},
|
||
{width : '250', title : '订单产品数量', field : 'productnum', sortable : true, align:'center',sortable:false},
|
||
{width : '250', title : '未排计划产品数', field : 'orderproductdetail', sortable : true, align:'center',formatter : function(value,row){
|
||
if(value.length!=0){
|
||
var unplanednum=0;
|
||
for(var i=0;i<value.length;i++){
|
||
if(value[i].productionorderno==null || value[i].productionorderno==""){
|
||
unplanednum++;
|
||
}
|
||
}
|
||
return unplanednum;
|
||
}else{
|
||
return 0;
|
||
}
|
||
},sortable:false}
|
||
] ],
|
||
toolbar : '#toolbar',
|
||
onLoadSuccess : function(data) {
|
||
$('.iconImg').attr('src', ext.pixel_0);
|
||
//if(flag==0){
|
||
//flag=1;
|
||
//grid.datagrid('load',ext.serializeObject($('#searchForm')));//搜索
|
||
//}else{
|
||
//展开所有的行
|
||
for(var i=0;i<data.rows.length;i++){
|
||
$('#grid').datagrid('expandRow',i);
|
||
}
|
||
//}
|
||
|
||
},
|
||
onExpandRow: function(index,row){
|
||
var ddvt = $(this).datagrid('getRowDetail',index).find('table.ddv');
|
||
ddvt.datagrid({
|
||
url:ext.contextPath + '/plan/dailyplan/getlist_detail.do',
|
||
queryParams: {
|
||
salesOrderID: row.id,
|
||
search_name: $('#search_name').textbox('getValue'),
|
||
sdt: $("#sdt").val(),
|
||
edt: $("#edt").val(),
|
||
search_status: $('#search_status').combobox('getValue'),
|
||
pid:ddvpid
|
||
},
|
||
fitColumns:true,
|
||
ctrlSelect:true,
|
||
singleSelect: false,
|
||
selectOnCheck: false,
|
||
checkOnSelect: false,
|
||
idField : 'id',
|
||
rownumbers:true,
|
||
//loadMsg:'',
|
||
height:'auto',
|
||
rowStyler: function(index,row){
|
||
var rowstyler='';
|
||
if (row.taskchangedstatus!=null){
|
||
if(row.taskchangedstatus=='true' ||row.taskchangedstatus=='TRUE'){
|
||
rowstyler+= 'font-weight:bold;';
|
||
}
|
||
}
|
||
if(row.status=='3'){
|
||
rowstyler+= ' background-color:#C0C0C0;color:#fff;';
|
||
}else if(row.status=='6'){
|
||
rowstyler+= ' font-style:ltalic;';
|
||
}
|
||
return rowstyler;
|
||
},
|
||
columns : [ [
|
||
|
||
{width : '100', title : '生产订单号', field : 'productionorderno', sortable : true, halign:'center' ,sortable:true},
|
||
// {width : '100', title : '料号', field : 'bomid', sortable : true, halign:'center' },
|
||
{width : '80', title : '计划生产数', field : 'productquantity', sortable : true, halign:'center' ,sortable:false},
|
||
{width : '60', title : '完成数', field : 'finishedquantity', sortable : true, halign:'center' ,sortable:false},
|
||
{width : '180', title : '工艺路线', field : 'processrealname', sortable : true, halign:'center' ,sortable:false},
|
||
{width : '120', title : '计划下达日期', field : 'stdt', sortable : true, align:'center', formatter : function(value, row){
|
||
if(value.substring(0,4)=="1900"){
|
||
return "";
|
||
}else{
|
||
return value.substring(0,19);
|
||
}
|
||
},sortable:false },
|
||
{width : '120', title : '计划完成日期', field : 'eddt', sortable : true, align:'center', formatter : function(value, row){
|
||
if(value.substring(0,4)=="1900"){
|
||
return "";
|
||
}else{
|
||
return value.substring(0,19);
|
||
}
|
||
} ,sortable:false},
|
||
{width : '100', title : '计划状态', field : 'status', sortable : true, align:'center', formatter : function(value, row){
|
||
switch(value){
|
||
case "0": return "计划编制";
|
||
case "1": return "计划下发";
|
||
case "2": return "计划执行";
|
||
case "3": return "已作废";
|
||
case "4": return "已重排";
|
||
case "6": return "已完成";
|
||
}
|
||
} ,sortable:false},
|
||
{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,"plan/dailyplan/edit.do")) {%>
|
||
if(row.status=='0'){
|
||
str += '<img class="iconImg ext-icon-table_edit" title="编辑" onclick="editFun(\''+row.id+'\');"/> ';
|
||
}
|
||
<%}%>
|
||
<%if (sessionManager.havePermission(session,"plan/dailyplan/delete.do")) {%>
|
||
str += '<img class="iconImg ext-icon-table_delete" title="删除" onclick="deleteFun(\''+row.id+'\');"/> ';
|
||
<%}%>
|
||
<%if (sessionManager.havePermission(session,"plan/dailyplan/edit.do")) {%>
|
||
if(row.status!='0'){
|
||
str += '<img class="iconImg ext-icon-bin" title="计划作废" onclick="invalidateFun(\''+row.id+'\');"/> ';
|
||
}
|
||
<%}%>
|
||
return str;
|
||
}
|
||
},
|
||
{width : '80', title : '提示', field : 'taskchangedstatus', sortable : true, align:'center', formatter : function(value, row){
|
||
if(value=="true" ||value=="TRUE"){
|
||
return '已生成工单<img class="iconImg ext-icon-new" title="任务新变动" onclick="viewFun(\''+row.id+'\');"/>';
|
||
}else{
|
||
return "";
|
||
}
|
||
} ,sortable:false}
|
||
] ],
|
||
onResize:function(){
|
||
$('#grid').datagrid('fixDetailRowHeight',index);
|
||
},
|
||
onLoadSuccess:function(){
|
||
$('.iconImg').attr('src', ext.pixel_0);
|
||
setTimeout(function(){
|
||
$('#grid').datagrid('fixDetailRowHeight',index);
|
||
},0);
|
||
|
||
}
|
||
});
|
||
}
|
||
});
|
||
$('#tt').tabs({
|
||
onSelect: function(title){//点到tab才加载
|
||
if(title=='作废计划'){
|
||
invalidategrid = $('#invalidategrid').datagrid({
|
||
title : '',
|
||
url : ext.contextPath + '/plan/dailyplansummary/getinvalidDPS.do?sdt=${wsdt}&edt=${wedt}',
|
||
rownumbers : true,
|
||
striped : true,
|
||
ctrlSelect:true,
|
||
singleSelect: false,
|
||
selectOnCheck: false,
|
||
checkOnSelect: false,
|
||
idField : 'id',
|
||
pageSize : 20,
|
||
pageList : [20, 50, 100],
|
||
columns : [ [
|
||
{width : '150', title : '名称', field : 'name', align:'center'},
|
||
{width : '100', title : '计划日期', field : 'plandt', halign:'center',align:'center', formatter : function(value, row){
|
||
if(value!=null){
|
||
return value.substring(0,10);
|
||
}
|
||
}},
|
||
{width : '180', title : '备注', field : 'remark', halign:'center',align:'left'},
|
||
{width : '100', title : '作废人', field : '_modifiername', halign:'center',align:'center'},
|
||
{width : '150', title : '作废日期', field : 'modifydt', halign:'center',align:'center'}
|
||
] ]
|
||
});
|
||
}else if(title=='全部计划'){
|
||
gridAll = $('#gridAll').datagrid({
|
||
view: detailview,
|
||
detailFormatter:function(index,row){
|
||
return '<div style="padding:2px"><table class="ddv"></table></div>';
|
||
},
|
||
title : '',
|
||
url : ext.contextPath + '/plan/dailyplan/getlist.do',
|
||
queryParams: {
|
||
search_name:$('#search_nameAll').textbox('getValue'),
|
||
sdt: $("#sdtAll").val(),
|
||
edt: $("#edtAll").val(),
|
||
search_status:$('#search_statusAll').combobox('getValue')
|
||
},
|
||
striped : true,
|
||
rownumbers : true,
|
||
pagination : true,
|
||
singleSelect: true,
|
||
ctrlSelect:true,
|
||
selectOnCheck: false,
|
||
checkOnSelect: false,
|
||
idField : 'id',
|
||
pageSize : 50,
|
||
pageList : [ 20, 50, 100],
|
||
columns : [ [
|
||
{checkbox:true , field : 'ck'},
|
||
{width : '250', title : '销售订单号', field : 'salesorderno', sortable : true, halign:'center',sortable:true},
|
||
{width : '290', title : '产品名称', field : 'product', sortable : true, halign:'center',formatter : function(value,row){
|
||
if(value!=null){
|
||
return value.materialname;
|
||
}else{
|
||
return value;
|
||
}
|
||
},sortable:false},
|
||
{width : '250', title : '订单产品数量', field : 'productnum', sortable : true, align:'center',sortable:false},
|
||
{width : '250', title : '未排计划产品数', field : 'orderproductdetail', sortable : true, align:'center',formatter : function(value,row){
|
||
if(value.length!=0){
|
||
var unplanednum=0;
|
||
for(var i=0;i<value.length;i++){
|
||
if(value[i].productionorderno==null || value[i].productionorderno==""){
|
||
unplanednum++;
|
||
}
|
||
}
|
||
return unplanednum;
|
||
}else{
|
||
return 0;
|
||
}
|
||
},sortable:false}
|
||
] ],
|
||
toolbar : '#toolbarAll',
|
||
onLoadSuccess : function(data) {
|
||
$('.iconImg').attr('src', ext.pixel_0);
|
||
//if(flag==0){
|
||
//flag=1;
|
||
//grid.datagrid('load',ext.serializeObject($('#searchForm')));//搜索
|
||
//}else{
|
||
//展开所有的行
|
||
for(var i=0;i<data.rows.length;i++){
|
||
$('#gridAll').datagrid('expandRow',i);
|
||
}
|
||
//}
|
||
|
||
},
|
||
onExpandRow: function(index,row){
|
||
var ddvallT = $(this).datagrid('getRowDetail',index).find('table.ddv');
|
||
ddvallT.datagrid({
|
||
url:ext.contextPath + '/plan/dailyplan/getlist_detail.do',
|
||
queryParams: {
|
||
salesOrderID: row.id,
|
||
search_name: $('#search_nameAll').textbox('getValue'),
|
||
sdt: $("#sdtAll").val(),
|
||
edt: $("#edtAll").val(),
|
||
search_status: $('#search_statusAll').combobox('getValue')
|
||
},
|
||
fitColumns:true,
|
||
ctrlSelect:true,
|
||
singleSelect: false,
|
||
selectOnCheck: false,
|
||
checkOnSelect: false,
|
||
idField : 'id',
|
||
rownumbers:true,
|
||
//loadMsg:'',
|
||
height:'auto',
|
||
rowStyler: function(index,row){
|
||
var rowstyler='';
|
||
if (row.taskchangedstatus!=null){
|
||
if(row.taskchangedstatus=='true' ||row.taskchangedstatus=='TRUE'){
|
||
rowstyler+= 'font-weight:bold;';
|
||
}
|
||
}
|
||
if(row.status=='3'){
|
||
rowstyler+= ' background-color:#C0C0C0;color:#fff;';
|
||
}else if(row.status=='6'){
|
||
rowstyler+= ' font-style:ltalic;';
|
||
}
|
||
return rowstyler;
|
||
},
|
||
columns : [ [
|
||
|
||
{width : '100', title : '生产订单号', field : 'productionorderno', sortable : true, halign:'center' ,sortable:true},
|
||
// {width : '100', title : '料号', field : 'bomid', sortable : true, halign:'center' },
|
||
{width : '80', title : '计划生产数', field : 'productquantity', sortable : true, halign:'center' ,sortable:false},
|
||
{width : '60', title : '完成数', field : 'finishedquantity', sortable : true, halign:'center' ,sortable:false},
|
||
{width : '180', title : '工艺路线', field : 'processrealname', sortable : true, halign:'center' ,sortable:false},
|
||
{width : '120', title : '计划下达日期', field : 'stdt', sortable : true, align:'center', formatter : function(value, row){
|
||
if(value.substring(0,4)=="1900"){
|
||
return "";
|
||
}else{
|
||
return value.substring(0,19);
|
||
}
|
||
} ,sortable:false},
|
||
{width : '120', title : '计划完成日期', field : 'eddt', sortable : true, align:'center', formatter : function(value, row){
|
||
if(value.substring(0,4)=="1900"){
|
||
return "";
|
||
}else{
|
||
return value.substring(0,19);
|
||
}
|
||
} ,sortable:false},
|
||
{width : '100', title : '计划状态', field : 'status', sortable : true, align:'center', formatter : function(value, row){
|
||
switch(value){
|
||
case "0": return "计划编制";
|
||
case "1": return "计划下发";
|
||
case "2": return "计划执行";
|
||
case "3": return "已作废";
|
||
case "4": return "已重排";
|
||
case "6": return "已完成";
|
||
}
|
||
} ,sortable:false},
|
||
{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,"plan/dailyplan/edit.do")) {%>
|
||
if(row.status=='0'){
|
||
str += '<img class="iconImg ext-icon-table_edit" title="编辑" onclick="editFun(\''+row.id+'\');"/> ';
|
||
}
|
||
<%}%>
|
||
<%if (sessionManager.havePermission(session,"plan/dailyplan/delete.do")) {%>
|
||
str += '<img class="iconImg ext-icon-table_delete" title="删除" onclick="deleteFun(\''+row.id+'\');"/> ';
|
||
<%}%>
|
||
<%if (sessionManager.havePermission(session,"plan/dailyplan/edit.do")) {%>
|
||
if(row.status!='0'){
|
||
str += '<img class="iconImg ext-icon-bin" title="计划作废" onclick="invalidateFun(\''+row.id+'\');"/> ';
|
||
}
|
||
<%}%>
|
||
return str;
|
||
}
|
||
},
|
||
{width : '80', title : '提示', field : 'taskchangedstatus', sortable : true, align:'center', formatter : function(value, row){
|
||
if(value=="true" ||value=="TRUE"){
|
||
return '已生成工单<img class="iconImg ext-icon-new" title="任务新变动" onclick="viewFun(\''+row.id+'\');"/>';
|
||
}else{
|
||
return "";
|
||
}
|
||
} ,sortable:false}
|
||
] ],
|
||
onResize:function(){
|
||
$('#gridAll').datagrid('fixDetailRowHeight',index);
|
||
},
|
||
onLoadSuccess:function(){
|
||
$('.iconImg').attr('src', ext.pixel_0);
|
||
setTimeout(function(){
|
||
$('#gridAll').datagrid('fixDetailRowHeight',index);
|
||
},0);
|
||
|
||
}
|
||
});
|
||
}
|
||
});
|
||
}else if(title=='当前计划'){
|
||
grid.datagrid('reload');//全部计划里面刷新grid会显示出错,这里再刷新一遍
|
||
}
|
||
}
|
||
});
|
||
|
||
});
|
||
var invalidateFun = function(id) {
|
||
parent.$.messager.confirm('提示', '您确定要此记录作废?计划作废后将无法撤销。', function(r) {
|
||
if (r) {
|
||
$.post(ext.contextPath + '/plan/dailyplan/invalidate.do', {id : id}, function(data) {
|
||
if(data==1){
|
||
top.$.messager.alert('提示','作废成功','info');
|
||
grid.datagrid('reload');
|
||
}else{
|
||
top.$.messager.alert('提示','作废失败','info');
|
||
}
|
||
});
|
||
}
|
||
});
|
||
};
|
||
var invalidateday = function() {
|
||
parent.$.messager.confirm('提示', '您确定要作废全天计划?计划作废后将无法撤销。', function(r) {
|
||
if (r) {
|
||
var id='${dailyplansummary.id }';
|
||
$.post(ext.contextPath + '/plan/dailyplansummary/invalidateday.do', {id : id}, function(data) {
|
||
if(data==1){
|
||
top.$.messager.alert('提示','作废成功','info');
|
||
parent.$("#viewDialog").dialog('destroy');
|
||
}else{
|
||
top.$.messager.alert('提示','作废失败','info');
|
||
}
|
||
});
|
||
|
||
}
|
||
});
|
||
};
|
||
function showYesterday(){
|
||
var yesterday=getDateStartEnd("yesterday");
|
||
$("#sdt").val(yesterday[0]);
|
||
$("#edt").val(yesterday[1]);
|
||
grid.datagrid('load',ext.serializeObject($('#searchForm')));//搜索
|
||
}
|
||
function showToday(){
|
||
var today=getDateStartEnd("today");
|
||
$("#sdt").val(today[0]);
|
||
$("#edt").val(today[1]);
|
||
grid.datagrid('load',ext.serializeObject($('#searchForm')));//搜索
|
||
}
|
||
function showThisWeek(){
|
||
var thisweek=getDateStartEnd("week");
|
||
$("#sdt").val(thisweek[0]);
|
||
$("#edt").val(thisweek[1]);
|
||
grid.datagrid('load',ext.serializeObject($('#searchForm')));//搜索
|
||
}
|
||
function reset(){
|
||
$('#searchForm').form('clear');
|
||
ddvpid='${dailyplansummary.id }';
|
||
grid.datagrid('load',{pid:'${dailyplansummary.id }'});
|
||
$('#sdt').val('${wsdt}');
|
||
$('#edt').val('${wedt}');
|
||
}
|
||
</script>
|
||
</head>
|
||
<body >
|
||
<div id="tt" class="easyui-tabs" data-options="fit:true,border:false">
|
||
<div title="当前计划" style="padding:0px;">
|
||
<div id="cc" class="easyui-layout" data-options="fit:true,border:false">
|
||
<div id="tbar">
|
||
<a href="javascript:void(0);" class="ext-icon-pencil_add" title="编辑" onclick="doedit();"></a>
|
||
<a href="javascript:void(0);" class="ext-icon-status_away" title="审核" onclick="doaudit();"></a>
|
||
<a href="javascript:void(0);" class="ext-icon-bin" title="作废" onclick="invalidateday();"></a>
|
||
</div>
|
||
<div data-options="region:'north',title:'日计划汇总信息',split:false,tools:'#tbar'" style="height:100px;">
|
||
<table class="table">
|
||
<tr>
|
||
<th>日计划汇总</th>
|
||
<td>${dailyplansummary.name }</td>
|
||
<th>状态</th>
|
||
<td>
|
||
<c:choose>
|
||
<c:when test="${dailyplansummary.status == 0}">未审核</c:when>
|
||
<c:when test="${dailyplansummary.status == 1}">已完成</c:when>
|
||
<c:when test="${dailyplansummary.status == 3}">已审核</c:when>
|
||
<c:otherwise></c:otherwise>
|
||
</c:choose>
|
||
</td>
|
||
<th>日计划汇总日期</th>
|
||
<td>${fn:substring(dailyplansummary.plandt,0,10)}</td>
|
||
<th>该天计划产品总数</th>
|
||
<td>${totalnum}</td>
|
||
</tr>
|
||
<tr>
|
||
<th>审核人</th>
|
||
<td>${auditorname}</td>
|
||
<th>审核日期</th>
|
||
<td>${fn:substring(dailyplansummary.auditdate,0,19)}</td>
|
||
<th>备注</th>
|
||
<td>${dailyplansummary.remark}</td>
|
||
<th ></th>
|
||
<td></td>
|
||
|
||
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div data-options="region:'center',title:'日计划'" style="padding:0px;">
|
||
<div class="easyui-layout" data-options="fit:true,border:false">
|
||
<div id="toolbar" style="display: none;">
|
||
<table>
|
||
<tr>
|
||
<td>
|
||
<table>
|
||
<tr>
|
||
<%if (sessionManager.havePermission(session,"plan/dailyplan/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,"plan/dailyplan/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="">导入</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">
|
||
<input id="pid" name="pid" type="hidden" value="${dailyplansummary.id }" />
|
||
<table>
|
||
<tr>
|
||
<td>生产订单号</td>
|
||
<td><input name="search_name" id="search_name" class="easyui-textbox" data-options="prompt:'请输入关键字'" style="width: 150px;" value=""/></td>
|
||
<td >计划状态</td>
|
||
<td colspan='4'><select id="search_status" name="search_status" class="easyui-combobox" style="width:152px;">
|
||
<option value='all' select>全部</option>
|
||
<option value='edit'>编制中</option>
|
||
<option value='inprogress'>执行中</option>
|
||
<option value='completed'>已完成</option>
|
||
</select>
|
||
</td>
|
||
<!-- </tr> -->
|
||
<!-- <tr> -->
|
||
<!-- <td>计划下达日期</td> -->
|
||
<td><input id="sdt" name="sdt" class="Wdate" type="hidden"
|
||
value="${wsdt}"
|
||
onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',maxDate:'#F{$dp.$D(\'edt\')}'})"
|
||
readonly></td>
|
||
<!-- <td>到</td> -->
|
||
<td><input id="edt" name="edt" class="Wdate" type="hidden"
|
||
value="${wedt}"
|
||
onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',minDate:'#F{$dp.$D(\'sdt\')}'})"
|
||
readonly></td>
|
||
<!-- <td><a href="#" class="easyui-linkbutton" -->
|
||
<!-- onclick="showYesterday();">昨日</a> <a href="#" class="easyui-linkbutton" -->
|
||
<!-- onclick="showToday();">今日</a> <a href="#" class="easyui-linkbutton" -->
|
||
<!-- onclick="showThisWeek();">本周</a></td> -->
|
||
<!-- <td><div class="datagrid-btn-separator"></div></td> -->
|
||
<td><a href="javascript:void(0);" class="easyui-linkbutton"
|
||
data-options="iconCls:'ext-icon-search',plain:true"
|
||
onclick="$('#pid').val('${dailyplansummary.id }');grid.datagrid('load',ext.serializeObject($('#searchForm')));">搜索</a>
|
||
<a href="javascript:void(0);" class="easyui-linkbutton"
|
||
data-options="iconCls:'icon-reload',plain:true"
|
||
onclick="reset();">重置</a>
|
||
<!-- <a href="javascript:void(0);" class="easyui-linkbutton" -->
|
||
<!-- data-options="iconCls:'ext-icon-search',plain:true" -->
|
||
<!-- onclick="$('#searchForm').form('clear');ddvpid='';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>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div title="作废计划" data-options="iconCls:''" style="padding:0px;">
|
||
<div class="easyui-panel" title="作废的日计划汇总" data-options="fit:true,border:false">
|
||
<table id="invalidategrid" data-options="fit:true,border:false"></table>
|
||
</div>
|
||
</div>
|
||
<div title="全部计划" data-options="iconCls:''" style="padding:0px;">
|
||
<div class="easyui-panel" title="全部日计划" data-options="fit:true,border:false">
|
||
<div class="easyui-layout" data-options="fit:true,border:false">
|
||
<div id="toolbarAll" style="display: none;">
|
||
<table>
|
||
<tr>
|
||
<td>
|
||
<table>
|
||
<tr>
|
||
<%if (sessionManager.havePermission(session,"plan/dailyplan/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,"plan/dailyplan/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="">导入</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="searchFormAll">
|
||
<table>
|
||
<tr>
|
||
|
||
<td>生产订单号</td>
|
||
<td><input name="search_nameAll" id="search_nameAll" class="easyui-textbox" data-options="prompt:'请输入关键字'" style="width: 150px;" value=""/></td>
|
||
<td >计划状态</td>
|
||
<td colspan='4'><select id="search_statusAll" name="search_statusAll" class="easyui-combobox" style="width:152px;">
|
||
<option value='all' select>全部</option>
|
||
<option value='edit'>编制中</option>
|
||
<option value='inprogress'>执行中</option>
|
||
<option value='completed'>已完成</option>
|
||
</select>
|
||
</td>
|
||
<!-- </tr> -->
|
||
<!-- <tr> -->
|
||
<td>计划下达日期</td>
|
||
<td><input id="sdtAll" name="sdtAll" class="Wdate"
|
||
value=""
|
||
onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',maxDate:'#F{$dp.$D(\'edtAll\')}'})"
|
||
readonly></td>
|
||
<td>到</td>
|
||
<td><input id="edtAll" name="edtAll" class="Wdate"
|
||
value=""
|
||
onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',minDate:'#F{$dp.$D(\'sdtAll\')}'})"
|
||
readonly></td>
|
||
<!-- <td><a href="#" class="easyui-linkbutton" -->
|
||
<!-- onclick="showYesterday();">昨日</a> <a href="#" class="easyui-linkbutton" -->
|
||
<!-- onclick="showToday();">今日</a> <a href="#" class="easyui-linkbutton" -->
|
||
<!-- onclick="showThisWeek();">本周</a></td> -->
|
||
<!-- <td><div class="datagrid-btn-separator"></div></td> -->
|
||
<td><a href="javascript:void(0);" class="easyui-linkbutton"
|
||
data-options="iconCls:'ext-icon-search',plain:true"
|
||
onclick="gridAll.datagrid('load',ext.serializeObject($('#searchFormAll')));">搜索</a>
|
||
<a href="javascript:void(0);" class="easyui-linkbutton"
|
||
data-options="iconCls:'icon-reload',plain:true"
|
||
onclick="$('#searchFormAll').form('clear');gridAll.datagrid('load',{});">重置</a>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</form>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div data-options="region:'center',fit:true,border:false">
|
||
<table id="gridAll" data-options="fit:true,border:false"></table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
|