如何在模型 ir.actions.server odoo 12 中给用户组(XML)?

How to give user groups(XML) in the model ir.actions.server odoo 12?

我使用这个 xml 代码在 'Action' 中添加了一个按钮,但我需要将按钮限制为某些用户组,

<record id="specialist_no_show_action" model="ir.actions.server">
                <field name="name">No Show </field>
                <field name="type">ir.actions.server</field>
                <field name="binding_model_id" ref="second_opinion.model_consultation"/>
                <field name="model_id" ref="second_opinion.model_consultation"/>
                <field name="state">code</field>
                <field name="code">
                    action = model.update_no_show()
                </field>
            </record>

我认为无法限制其在操作菜单中的可见性,但作为解决方法,您可以在服务器操作的 code 中执行以下操作:

if not env.user.has_group('base.group_erp_manager'):
    raise Warning("You do not have access to trigger this action")

将“base.group_erp_manager”替换为您的用户组的 XML ID。

ir.actions.actions get_bindings 方法将尝试检索绑定到给定模型的操作列表并丢弃未经授权的操作,然后读取操作定义。

该方法将使用 groups_id 字段来检查用户是否可以执行操作。

groups_id
Many2many field to the groups allowed to view/use the current report

因此 groups_id 字段被添加到 ir.actions.report 以允许 groups 到 view/use 当前报告

很遗憾,groups_id 字段未在 ir.actions.server

中实现

幸运的是,get_bindings 方法是在 ir.actions.actions 模型中实现的,它是两个模型 ir.actions.reportir.actions.server 的基础模型,所以使用相同的逻辑在服务器操作中,只需在 ir.action.server 中添加一个 groups_id 字段,并从 XML 定义中使用它来限制对某些组的访问。

使用 groups_id 字段进行服务器操作:

  • 继承服务器操作模型并添加groups_id字段:

    class IrActionsServer(models.Model):
        _inherit = 'ir.actions.server'
    
        groups_id = fields.Many2many('res.groups', 'res_groups_server_rel', 'uid', 'gid', string='Groups')
    
  • 然后从XML设置groups_id字段值,下面的例子将使用special commands formatAdministration/Access Rights组添加到groups_id 字段:

    <field name='groups_id' eval="[(4, ref('base.group_erp_manager'))]"/>