mrp_user_product_restriction/views/res_users_views.xml
2026-01-23 15:33:44 +07:00

18 lines
698 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_users_form_mrp_restriction" model="ir.ui.view">
<field name="name">res.users.form.mrp.restriction</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form"/>
<field name="arch" type="xml">
<notebook position="inside">
<page string="Manufacturing Restrictions">
<group>
<field name="allowed_manufacture_product_ids" widget="many2many_tags" options="{'no_create': True}"/>
</group>
</page>
</notebook>
</field>
</record>
</odoo>