PLM之家PLMHome-国产软件践行者

【Aras 二次开发代码】为对象Item设置私有权限

[复制链接]

2018-8-1 13:56:44 2079 0

admin 发表于 2018-8-1 13:56:44 |阅读模式

admin 楼主

2018-8-1 13:56:44

请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!

您需要 登录 才可以下载或查看,没有账号?注册

x
Technique  ( ?0 I9 q$ ]9 F2 r- i  p. P$ ~4 m
Use the Item Class Extended Method set to set a new private Permission for an Item.
0 L% ?5 k, V  n3 GJavaScript  
/ l2 O, g1 z( V: S( r// Set up the Part query
/ x) B$ d. V, Ivar innovator = this.newInnovator();
3 a. d' e( N) f. dvar qryItem = this.newItem("Part", "get"); 9 w- h5 _) g+ _# j3 p2 v
qryItem.setAttribute("select", "id,permission_id");
$ Y' T/ r8 b/ l3 \- dqryItem.setProperty("item_number", "123-456%", "like");
# ^0 n% _' ~4 i) d' n4 U: g 1 P  |: A& h! E/ E$ ^
// Run the query and check for errors - u1 W7 z; R/ h+ A5 l( `
var resultItem = qryItem.apply();
/ C6 q7 C5 z/ B. V1 e1 x/ P+ yif (resultItem.isError()) {
- i/ L; y) ^7 [3 M7 ?; R0 e: T top.aras.AlertError(resultItem.getErrorDetail()); 8 ?1 F' s' g! L; T$ |! J0 x+ K
return; 6 @; |; N7 O3 g0 }; H+ i
} 9 `' K4 `' ^9 P! y9 u3 v; j

0 b( t& {+ U- H# M2 a) t% _% r// Iterate over the Items returned and add the private permissions for each.
8 X  ^3 |2 y5 h6 p8 Evar count = resultItem.getItemCount(); * M7 H+ ?3 ~3 \7 c  X
for (i=0; i<count; ++i) {
  j: E( y% T( z0 l/ } var item = resultItem.getItemByIndex(i);
' ?+ O$ u+ G) Z- f" A. `6 q  f8 M* | // Start with a blank permission
/ c( L  q/ U& Y var permItem = item.setPrivatePermission(""); & C* W1 [1 X+ W/ \
// To copy from the current permission: permItem = item.setPrivatePermission();
4 A% A. c5 [, t3 D4 Q // To copy from a named permission: permItem = item.setPrivatePermission("New Part");
  B: k( Z$ P) l4 e% ~' j   {$ Y4 ^" E( a+ B
permItem.setProperty("name", permItem.getID()); ) v# L; ]' y% {2 B
permItem.setIdentityAccess("Component Engineering", "get", true); , e1 Y8 G+ o! i) w
permItem.setIdentityAccess("CM", "get", true);
; t- E: w% u, b  N6 y permItem.setIdentityAccess("CM", "update", true);
# {) K& I; s. C
$ }' e3 \4 \; f8 A# I% k/ \$ y // Grant access to the current user's alias identity
3 k& X- C- G  P var aliasId = innovator.getUserAliases().split(',')[0]; / a* Q) v0 G% C& h! k; J# ]- k
var aliasName = innovator.getItemById("Identity",aliasId).getProperty("name"); * I% l; w# l  `# H% Y$ O
permItem.setIdentityAccess(aliasName, "get", true); 8 c8 ~4 D: ?, W/ S9 K
6 Y4 |( e: P; I) u
item.setAction("edit"); / `0 K3 B# Y$ w. ^5 J+ I
resultItem = item.apply();
, Z- X; j  p) a% T- p# n if (resultItem.isError()) { top.aras.AlertError(resultItem.getErrorDetail()); } 0 q4 S( D+ W  `
} 9 A* @0 ~! p7 a; j

. Q: D! K" a9 I
上海点团信息科技有限公司,承接UG NX,CATIA,CREO,Solidworks 等CAx软件,Teamcenter,3D Experience等PLM软件,工业4.0数字化软件的实施\二次开发\培训相关业务,详情QQ 939801026 Tel 18301858168 网址 doTeam.tech
回复

使用道具 举报

发表回复

您需要登录后才可以回帖 登录 | 注册

返回列表 本版积分规则

  • 发布新帖

  • 在线客服

  • 微信

  • 客户端

  • 返回顶部

  • x
    温馨提示

    本网站(plmhome.com)为PLM之家工业软件学习官网站

    展示的视频材料全部免费,需要高清和特殊技术支持请联系 QQ: 939801026

    PLM之家NX CAM二次开发专题模块培训报名开始啦

    我知道了