gpt4 book ai didi

python - OpenERP 7,会计模块

转载 作者:太空宇宙 更新时间:2023-11-03 14:43:07 24 4
gpt4 key购买 nike

我需要创建一组用户,他们只能查看供应商发票,而不能查看客户发票(在会计模块中)。

我问是否可以这样做,如果可以,我该怎么做?

PS:我进行了几次搜索,但没有找到任何可能有帮助的东西。

最佳答案

您可以使用规则:

<record id="your_rule_id" model="ir.rule">
<field name="name">Rule Name</field>
<field name="model_id" ref="model_account_invoice"/>
<field name="groups" eval="[(6,0, [ref('your_group')])]"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_unlink" eval="False"/>
<field name="domain_force">[('your_field','=','supplier')]</field>
</record>

希望这对您有帮助。

关于python - OpenERP 7,会计模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46451711/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com