Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

v17: Module upgrade fails due to Many2one-related field

Subscribe

Get notified when there's activity on this post

This question has been flagged
many2oneupgraderelated_fieldsv17
1 Reply
467 Views
Avatar
Peter Schiffmann

We have 2 custom modules A and B:

Module A extends res.partner by a simple selection from a static list of predefined values:

class Partner(models.Model):
_inherit = "res.partner"
status = fields.Selection(STATUS, default="0")

Module B (depending on A by its manifest) extends account.move and relates to the status of a company via a Many2One:

class AccountMove(models.Model):
_inherit = "account.move"
partner_company_id = fields.Many2one("res.partner", compute="_compute_parent", store=True)
status = fields.Selection(related="partner_company_id.status", store=True)

After later changes to module A we want to upgrade it in Odoo via the 'Apps' menu, but we get an error message (the same we get when we try to upgrade module B with no changes at all).

File "/odoo17/odoo/fields.py", line 606, in setup_related
    raise KeyError(
KeyError: 'Field status referenced in related field definition account.move.status does not exist.'

Can we fix this somehow? Or is this an Odoo bug, due to the Many2One->related combination that Odoo can not handle correctly on the upgrade / transition?

0
Avatar
Discard
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,



This issue occurs because of how Odoo handles module dependencies and related fields during upgrades. In your setup, Module A adds the status field to res.partner, while Module B creates a related field in account.move that depends on res.partner.status. When you upgrade Module A, Odoo temporarily reloads its model definitions, and since Module B’s related field still references a field that hasn’t been fully reloaded, it triggers a KeyError. This isn’t exactly a bug in your code but rather a limitation of Odoo’s registry initialization process when dealing with interdependent modules.


To fix it, the simplest method is to upgrade the modules in the correct order, upgrade Module A first, then Module B. If the Apps interface doesn’t work, this can be done using terminal commands with -u module_a followed by -u module_b.


If that doesn’t resolve it, you can temporarily disable the related field in Module B (by removing the related parameter), upgrade Module A, and then restore the related field after Module A has loaded successfully.


A more robust solution is to replace the related field with a computed field that depends on partner_company_id.status. This avoids hard registry dependencies during startup and ensures that upgrades run smoothly regardless of the module loading order.


Finally, make sure Module B’s manifest explicitly declares a dependency on Module A. In short, this issue is caused by Odoo’s dependency loading sequence, and the best long-term fix is to use a computed field or carefully manage module upgrade order.


Hope it helps

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
v17: how to add related field in this scenario?
related_fields v17
Avatar
Avatar
1
Jan 24
2968
When is the scheduled date for the production upgrade to Odoo 17.0 on odoo.sh? Solved
upgrade v17
Avatar
Avatar
1
Jan 24
2053
Write to Record in Related Field of Many2One Relationship
many2one related_fields
Avatar
0
May 15
7236
Showing only name in Many2one field relation res.parter Solved
many2one res.partner v17
Avatar
Avatar
1
Jul 24
4061
Send a value from context one2many
many2one related_fields odoo15
Avatar
0
May 24
1780
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now