0
        has_share(function() {
            self.add_items('other', [
                {   label: _t('Share'),
                    callback: self.on_click_share,
                    classname: 'oe_share',
                    groups: 'base.group_no_one' },
                {   label: _t('Embed'),
                    callback: self.on_click_share_link,
                    classname: 'oe_share' },
            ]);

我想添加组:'base.group_no_one',但它不起作用。

4

1 回答 1

0
 has_share(function() {
     new session.web.Model('res.users').call('has_group', ['base.group_no_one']).done(function(group_status) {
         if (group_status == true) {
             self.add_items('other', [
                 { label: _t('Share'),
                   callback: self.on_click_share,
                   classname: 'oe_share' },
                 { label: _t('Embed'),
                   callback: self.on_click_share_link,
                   classname: 'oe_share' },
                 ]);
             }
        });
});

在 add_item 时使用此添加组。

于 2014-09-09T11:28:45.900 回答