From 7839f045918887d9f3b240fc4beb1583ae820bba Mon Sep 17 00:00:00 2001 From: tocmo0nlord Date: Tue, 2 Jun 2026 11:04:49 +0000 Subject: [PATCH] Fix duplicate field label warning on familylaw.issue name (computed) and issue_type both used label "Issue", which Odoo warns about at load. Renamed the computed field's label to "Issue Label". Verified: clean module install AND clean upgrade from the prod-deployed version on a clone of production db1 (prod image + prod addons set, throwaway DB, dropped after). Full suite still 200 tests / 0 failures. Co-Authored-By: Claude Opus 4.8 --- .../activeblue_familylaw/models/familylaw_issue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activeblue_familylaw_handoff/activeblue_familylaw_build/activeblue_familylaw/models/familylaw_issue.py b/activeblue_familylaw_handoff/activeblue_familylaw_build/activeblue_familylaw/models/familylaw_issue.py index c6b5d69..d1fd064 100644 --- a/activeblue_familylaw_handoff/activeblue_familylaw_build/activeblue_familylaw/models/familylaw_issue.py +++ b/activeblue_familylaw_handoff/activeblue_familylaw_build/activeblue_familylaw/models/familylaw_issue.py @@ -28,7 +28,7 @@ class FamilyLawIssue(models.Model): name = fields.Char( compute="_compute_name", store=True, - string="Issue", + string="Issue Label", ) description = fields.Text()