Monday, November 17, 2025
1 change · saas-18.2
Enhancements to existing features
This update prevents FEC imports from using excessive memory when matching imported entries to existing partners. Odoo now loads only the partner details needed for the match, which helps large imports complete more reliably.
Original PR description
### Description: When importing an FEC, Odoo will fetch all the partners to link the new imported records to the existing partners. The issue is that it triggers the prefetching of all the fields of the partners (304k partners in their case), causing a memory error. To avoid that, we can just fetch the field that we need (e.g. "name" and "ref"). ### Reference: opw-5153555 Forward-Port-Of: odoo/enterprise#98483