以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 如何冻结发布后的项目? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=127610) |
-- 作者:ygg8310 -- 发布时间:2018/11/18 8:10:00 -- 如何冻结发布后的项目? 如题,发布后的项目该如何冻结?不通过升级的方式 |
-- 作者:有点甜 -- 发布时间:2018/11/18 22:46:00 -- 你说的【冻结】是什么意思?请具体说明你要做的功能。
|
-- 作者:ygg8310 -- 发布时间:2018/11/21 20:54:00 -- 就是禁止编辑呀,具体的话就是说,同时使用2个可视化授权表进行授权,即一个分组权限表,一个组员权限表,即只有分组权限表授权以后,组员权限表的权限才生效,如果分组权限表没授权,则组员权限表是全部禁止编辑的 [此贴子已经被作者于2018/11/21 21:14:45编辑过]
|
-- 作者:有点甜 -- 发布时间:2018/11/21 21:45:00 -- 如果要做这个功能,参考
http://www.foxtable.com/webhelp/scr/1600.htm
|
-- 作者:ygg8310 -- 发布时间:2018/11/22 21:35:00 -- For Each t As Table In Tables t.Visible = True t.AllowEdit = true For Each c As Col In t.Cols c.Visible = True c.AllowEdit = True Next Next Tables("组权限").Visible = (User.Type <> UserTypeEnum.User ) If User.Type = UserTypeEnum.User Then For Each dr As DataRow In DataTables("组权限").Select("用户名 = \'" & User.Name & "\'" ) If dr.IsNull("列名") Then Tables(dr("表名")).Visible = Not dr("不可见") Tables(dr("表名")).AllowEdit = Not dr("不可编辑") Else Tables(dr("表名")).Cols(dr("列名")).Visible = Not dr("不可见") Tables(dr("表名")).Cols(dr("列名")).AllowEdit = Not dr("不可编辑") End If Next End If For Each t As Table In Tables
t.Visible = True t.AllowEdit = true For Each c As Col In t.Cols c.Visible = True c.AllowEdit = True Next Next Tables("用户权限").Visible = (User.Type <> UserTypeEnum.User ) If User.Type = UserTypeEnum.User Then For Each dr As DataRow In DataTables("用户权限").Select("分组名 = \'" & User.Group & "\'" ) If dr.IsNull("列名") Then Tables(dr("表名")).Visible = Not dr("不可见") Tables(dr("表名")).AllowEdit = Not dr("不可编辑") Else Tables(dr("表名")).Cols(dr("列名")).Visible = Not dr("不可见") Tables(dr("表名")).Cols(dr("列名")).AllowEdit = Not dr("不可编辑") End If Next End If |
-- 作者:ygg8310 -- 发布时间:2018/11/22 21:35:00 -- 这个能行吗??? |
-- 作者:有点甜 -- 发布时间:2018/11/22 21:41:00 -- 是否可以,自行测试。如果不会做,实例发上来,说明你要做什么。 |