瀏覽代碼

Merge branch 'fix/checkManage2' into 'develop'

Fix/check manage2【数据中心】修复数据中心打开报错问题

See merge request o2oa/o2oa!428
胡起 6 年之前
父節點
當前提交
b7b0467f1f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      o2web/source/x_component_process_ApplicationExplorer/Main.js

+ 1 - 1
o2web/source/x_component_process_ApplicationExplorer/Main.js

@@ -623,7 +623,7 @@ MWF.xApplication.process.ApplicationExplorer.Application = new Class({
 	checkManage: function(){
 		if (this.app.control.canManage) return true;
 		if (this.app.control.canCreate && (this.data.creatorPerson==layout.desktop.session.user.name)) return true;
-		if (this.data.controllerList.indexOf(layout.desktop.session.user.distinguishedName)!==-1) return true;
+		//if (this.data.controllerList.indexOf(layout.desktop.session.user.distinguishedName)!==-1) return true;
 		return false;
 	},