给单据做限制,限制管理员录入
This commit is contained in:
@@ -667,6 +667,9 @@
|
||||
|
||||
//增加
|
||||
function addAccountHead(){
|
||||
if(checkPower()){
|
||||
return;
|
||||
}
|
||||
$('#accountHeadFM').form('clear');
|
||||
var thisDateTime = getNowFormatDateTime(); //当前时间
|
||||
$("#BillTime").val(thisDateTime);
|
||||
|
||||
@@ -416,6 +416,9 @@
|
||||
var oldSupplier = "";
|
||||
|
||||
function addSuppler() {
|
||||
if(checkPower()){
|
||||
return;
|
||||
}
|
||||
$('#supplierDlg').dialog('open').dialog('setTitle','<img src="/js/easyui-1.3.5/themes/icons/edit_add.png"/> 增加'+listType+"信息");
|
||||
$(".window-mask").css({ width: webW ,height: webH});
|
||||
$("#supplier").focus();
|
||||
|
||||
@@ -397,7 +397,7 @@
|
||||
text:'增加',
|
||||
iconCls:'icon-add',
|
||||
handler:function() {
|
||||
addDepotHead();
|
||||
addDepotHead();
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1425,6 +1425,9 @@
|
||||
}
|
||||
//新增信息
|
||||
function addDepotHead(){
|
||||
if(checkPower()){
|
||||
return;
|
||||
}
|
||||
$('#depotHeadFM').form('clear');
|
||||
var thisDateTime = getNowFormatDateTime(); //当前时间
|
||||
$("#OperTime").val(thisDateTime);
|
||||
|
||||
Reference in New Issue
Block a user