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.
21 lines
816 B
21 lines
816 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- Form View For Product Template -->
|
|
<record id="product_template_view_form" model="ir.ui.view">
|
|
<field name="name">
|
|
product.template.view.form.inherit.product.restriction.users
|
|
</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//notebook" position="inside">
|
|
<page string="Restrict users" name="restrict_users">
|
|
<tree>
|
|
<field name="restrict_user_ids"/>
|
|
</tree>
|
|
<field name="is_product"/>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|