You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
872 B

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="res_user_pricelist_inherited" model="ir.ui.view">
<field name="name">res.users.pricelist.form.view.inherit</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form"/>
<field name="arch" type="xml">
<xpath expr="//page[last()]" position="after">
<page string="Allowed Price Lists" name="pricelist" attrs="{'invisible': [('is_restricted', '=', False)]}">
<group>
<group>
<field name="pricelist_ids" widget="many2many_tags"/>
<field name="is_restricted" invisible="1"/>
</group>
</group>
</page>
</xpath>
</field>
</record>
</odoo>