From 3bee8aa5bbcada4baba31100678ca7907be5d663 Mon Sep 17 00:00:00 2001 From: Francesco Ballerini <francescobl.lavoro@gmail.com> Date: Sat, 2 Sep 2023 14:00:59 +0200 Subject: [PATCH] [FIX] mrp: fix typo in mrp_immediate_production_views Typo error detected on `/mrp/wizard/mrp_immediate_production_views.xml`. It doesn't cause any issue on module installation or updates, but it's probably gonna cause issue on view inheritance. If you can confirm this is unintended typo I will edit commit msg. I also detected this on version 15.0 and 16.0. closes odoo/odoo#134773 X-original-commit: 80e8222f58fa2c1ef52c06eea093f59601c3c598 Signed-off-by: William Henrotin (whe) <whe@odoo.com> --- addons/mrp/wizard/mrp_immediate_production_views.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mrp/wizard/mrp_immediate_production_views.xml b/addons/mrp/wizard/mrp_immediate_production_views.xml index d078e46f9c90..8b562c21fbeb 100644 --- a/addons/mrp/wizard/mrp_immediate_production_views.xml +++ b/addons/mrp/wizard/mrp_immediate_production_views.xml @@ -10,7 +10,7 @@ </group> <field name="show_productions" invisible="1"/> - <field name="immediate_production_line_ids" nolabel="1" attrs="{'invisible': [('show_productions', '=', False)]}">> + <field name="immediate_production_line_ids" nolabel="1" attrs="{'invisible': [('show_productions', '=', False)]}"> <tree create="0" delete="0" editable="top"> <field name="production_id"/> <field name="to_immediate" widget="boolean_toggle"/> -- GitLab