Merge PR #1971 into 16.0

Signed-off-by pedrobaeza
This commit is contained in:
OCA-git-bot
2024-04-16 16:23:29 +00:00

View File

@@ -7,21 +7,19 @@
<field name="inherit_id" ref="stock.stock_putaway_list" />
<field name="arch" type="xml">
<field name="product_id" position="attributes">
<attribute name="readonly">False</attribute>
<attribute
name="attrs"
>{'readonly': [('category_id', '!=', False)], 'required': [('category_id', '=', False),('product_tmpl_id', '=', False)]}</attribute>
>{'readonly': ['|',('category_id', '!=', False), ('product_tmpl_id', '!=', False)]}</attribute>
</field>
<field name="category_id" position="attributes">
<attribute name="readonly">False</attribute>
<attribute
name="attrs"
>{'readonly': ['|', ('product_id', '!=', False), ('product_tmpl_id', '!=', False)], 'required': [('product_id', '=', False),('product_tmpl_id', '=', False)]}</attribute>
>{'readonly': ['|', ('product_id', '!=', False), ('product_tmpl_id', '!=', False)]}</attribute>
</field>
<field name="product_id" position="before">
<field
name="product_tmpl_id"
attrs="{'readonly': [('category_id', '!=', False)], 'required': [('category_id', '=', False), ('product_id', '=', False)]}"
attrs="{'readonly': [('category_id', '!=', False)]}"
options="{'no_create': True, 'no_open': True}"
force_save="1"
/>