Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
2992 Vizualizări
<record id="view_res_partner_pricelist" model="ir.ui.view">
                <field name="name">view.res.partner.pricelist.form</field>
                <field name="model">res.partner</field>
                <field name="type">form</field>
                <field name="inherit_id" ref="product.view_partner_property_form" />
                <field name="context">{'readonly_by_pass': True}</field>
                <field name="arch" type="xml">

                    <xpath expr="//page[@name='accounting']" position="replace">
                                        </xpath>
        </field>
            </record>

this is my view where I hide tab Accounting, and it works ok if the user that opens contact form have accounting & finance access rights, but if the user doesn't have them then I get an error

AttributeError: Element '<xpath expr="//page[@name='accounting']">' cannot be located in parent view

Error context:
View `view.res.partner.pricelist.form`

how can I make this work for users who has and don't accounting and finances access rights?

Imagine profil
Abandonează
Cel mai bun răspuns

Here you are inheriting child view . Inherit parent form view id :

E.g.

   

    <field name="inherit_id" ref="base.view_partner_form"/>

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
aug. 19
7185
1
iun. 24
1613
5
aug. 24
46576
2
apr. 24
2523
3
iun. 23
5733