87,993
社区成员
发帖
与我相关
我的任务
分享function orderFilling_sortingrework(pageValue,place,disposition1,tenantid){
$('<div></div>').dialog({
id:'orderFilling_sortingrework',
title: '填写《挑选/返工通知单》',
iconCls:'icon-edit',
width: 380,
height: 'auto',
top:50,
cache: false,
modal: true,
href:'orderFillingSortingreworkDialog.html',
resizable:true,
closed:false,
closable:false,
onLoad : function() {
$("#program").textbox('textbox').bind({
blur: function () {
$(this).css({ height: 18 }).parent().css({ height: 'auto' });
},
focus: function () {
$(this).css({ height: 60 }).parent().css({ height: 'auto' });
}
})
$("#reinspection").textbox('textbox').bind({
blur: function () {
$(this).css({ height: 18 }).parent().css({ height: 'auto' });
},
focus: function () {
$(this).css({ height: 60 }).parent().css({ height: 'auto' });
}
})
if(pageValue==10){
$('#zytype').show();
}
if(place==6){
$('#sscs').show();
}
,
buttons:[{
text:'保存',
iconCls : 'icon-ok',
handler:saveOrderOrSort
},{
text:'取消',
iconCls : 'icon-undo',
handler:newDialogClose
}]
})