|
|
|
Util.ACLFunc对象
darknight @ 2009-6-25 16:37:00
Util.ACLFunc--权限控制对象
BaseData对象跟权限控制的"基础资料"对应
- ACLFunc : {
- BaseData : {
-
- setTab : function(tab){},
-
-
- getCompanyList : function(str){},
- getPrjList : function(str){},
- getDeptStaffList : function(str){},
- getPoList : function(str){},
- getGoodsList : function(str){},
- getStorageList : function(str){}
- }
- }
-
-
- var G_Condition = "voucheritem.acid like '1001%' ";
- Util.ACLFunc.setTab('voucherItem');
- G_Condition = Util.ACLFunc.BaseData.getPrjList(G_Condition);
- G_Condition = Util.ACLFunc.BaseData.getDeptStaffList(G_Condition);
|