From 27640c284f6da488611c41ee1a2d793810ef7b32 Mon Sep 17 00:00:00 2001 From: Walid <waha@odoo.com> Date: Thu, 7 Sep 2023 13:39:13 +0200 Subject: [PATCH] [FIX] stock: forecast button color Steps to reproduce: - Enable multistep routes (3 steps delivery) - Create a new storable product (0 on hand quantity) - Confirm an SO with that product Bug: forecast button is correctly red on the SO line but it's green on the stock pickings Fix: button should be green if it's possible to reserve quantity red otherwise opw-3440627 closes odoo/odoo#134335 Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com> --- addons/stock/views/stock_picking_views.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/stock/views/stock_picking_views.xml b/addons/stock/views/stock_picking_views.xml index afbdffd97520..b4b36b0d9275 100644 --- a/addons/stock/views/stock_picking_views.xml +++ b/addons/stock/views/stock_picking_views.xml @@ -386,9 +386,9 @@ <field name="product_packaging_id" groups="product.group_stock_packaging"/> <field name="product_uom_qty" string="Demand" attrs="{'column_invisible': [('parent.immediate_transfer', '=', True)], 'readonly': ['|', ('is_initial_demand_editable', '=', False), '&', '&', ('show_operations', '=', True), ('is_locked', '=', True), ('is_initial_demand_editable', '=', False)]}"/> <button type="object" name="action_product_forecast_report" icon="fa-area-chart" - attrs="{'invisible': ['|', ('forecast_availability', '<', 0), '|', ('parent.immediate_transfer', '=', True), '&', ('parent.picking_type_code', '=', 'outgoing'), ('state', '!=', 'draft')]}"/> + attrs="{'invisible': ['|', ('forecast_availability', '<=', 0), '|', ('parent.immediate_transfer', '=', True), '&', ('parent.picking_type_code', '=', 'outgoing'), ('state', '!=', 'draft')]}"/> <button type="object" name="action_product_forecast_report" icon="fa-area-chart text-danger" - attrs="{'invisible': ['|', ('forecast_availability', '>=', 0), '|', ('parent.immediate_transfer', '=', True), '&', ('parent.picking_type_code', '=', 'outgoing'), ('state', '!=', 'draft')]}"/> + attrs="{'invisible': ['|', ('forecast_availability', '>', 0), '|', ('parent.immediate_transfer', '=', True), '&', ('parent.picking_type_code', '=', 'outgoing'), ('state', '!=', 'draft')]}"/> <field name="forecast_expected_date" invisible="1"/> <field name="forecast_availability" string="Reserved" attrs="{'column_invisible': ['|', '|', ('parent.state', 'in', ['draft', 'done']), ('parent.picking_type_code', '!=', 'outgoing'), ('parent.immediate_transfer', '=', True)]}" widget="forecast_widget"/> -- GitLab