From 5d89e04f82903526f48c1b59b32e32221b33150f Mon Sep 17 00:00:00 2001 From: gsinghpal Date: Thu, 9 Apr 2026 08:09:36 -0400 Subject: [PATCH] fusion_claims: shorten handoff_to_client label to 'Handed Off' (v19.0.8.0.5) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The long label 'Handed Off (Client/Authorizer Submitting)' was squeezing the MOD statusbar on the sale order form — the parenthetical pushed half the states off-screen behind a '...' overflow indicator. Context about WHO is handling the submission is already captured in x_fc_mod_submitted_by and visible in the MOD Documents tab, so the statusbar label does not need to repeat it. Deployed to odoo-westin and odoo-mobility, re-ran -u fusion_claims on both so the ir_model_fields_selection.name row was resynced. --- fusion_claims/__manifest__.py | 2 +- fusion_claims/models/sale_order.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fusion_claims/__manifest__.py b/fusion_claims/__manifest__.py index f2c5d3c3..904f9c58 100644 --- a/fusion_claims/__manifest__.py +++ b/fusion_claims/__manifest__.py @@ -5,7 +5,7 @@ { 'name': 'Fusion Claims', - 'version': '19.0.8.0.4', + 'version': '19.0.8.0.5', 'category': 'Sales', 'summary': 'Complete ADP Claims Management with Dashboard, Sales Integration, Billing Automation, and Two-Stage Verification.', 'description': """ diff --git a/fusion_claims/models/sale_order.py b/fusion_claims/models/sale_order.py index 2280135e..6927f961 100644 --- a/fusion_claims/models/sale_order.py +++ b/fusion_claims/models/sale_order.py @@ -426,7 +426,7 @@ class SaleOrder(models.Model): ('assessment_completed', 'Assessment Done'), ('processing_drawings', 'Processing Drawing'), ('quote_submitted', 'Quote Sent'), - ('handoff_to_client', 'Handed Off (Client/Authorizer Submitting)'), + ('handoff_to_client', 'Handed Off'), ('awaiting_funding', 'Awaiting Funding'), ('funding_approved', 'Approved'), ('funding_denied', 'Denied'),