تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
6223 أدوات العرض

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
يناير 24
3851
0
يناير 24
1922
0
ديسمبر 20
2441
1
سبتمبر 19
5299
0
يونيو 17
3497