如何在Odoo中使用Qweb中的用户组来控制视图?

时间:2018-04-18 08:57:29

标签: odoo qweb

有没有办法根据Qweb中的用户组控制视图?

我尝试更改聊天中“新消息”按钮的可见性。只有在用户处于调试模式时才能看到该按钮。

<templates>
<t t-extend="mail.Chatter">
    <t t-jquery="button[class='btn btn-sm btn-primary o_chatter_button_new_message']" t-operation="replace">
        <button type="button" groups="base.group_no_one" class="btn btn-sm btn-primary o_chatter_button_new_message"
            title="Send a message">
                New message
            </button>
    </t>
</t>

属性groups="base.group_no_one"不起作用。我也试过t-if条件但没有成功。

0 个答案:

没有答案