コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
6212 ビュー

Friends,

Usually i write record rules from settings>Security in odoo.

Can we write it directly in any files like we write access writes for a group?

Thanks..

アバター
破棄
最善の回答

Yes.

To create a rule, you need to set this record at MODULE_NAME/security/security.xml.
        <record id="portal_read_own_res_partner" model="ir.rule">
            <field name="name">res_partner: read access on my partner</field>
            <field name="model_id" ref="base.model_res_partner"/>
            <field name="domain_force">[('user_ids', 'in', user.id)]</field>
            <field name="groups" eval="[(4, ref('group_portal')), (4, ref('group_anonymous'))]"/>
            <field name="perm_create" eval="False"/>
            <field name="perm_unlink" eval="False"/>
            <field name="perm_write" eval="False"/>

            <field name="global" eval="True"/>       <!-- To set a rule as global -->
        </record>

Note:
Mostly record rules are defined inside <data noupdate="1">, so as to not update the rule if modified from Odoo Web-UI.

アバター
破棄
著作者

I did it..but rules didnt generated..which file i upgrade after change(I upgrade my module & base)..and make noupdate="0"

did you add the security.xml in __openerp__.py file? Then restart your server and upgrade your module

著作者

Yes..I added the rules in my file_details_security.xml..the restart..then upgrade..bt no changes

著作者

Sorry Friend,It was a mistake from my side.I chage a file and upgrade another(Both looks similer)..Thank you(1 vote & 1 tick)..

著作者

How can we set it a global(No group)

関連投稿 返信 ビュー 活動
2
1月 24
3848
0
1月 24
1921
0
12月 20
2439
1
9月 19
5296
0
6月 17
3492