Daily updates from Odoo
Wednesday, January 21, 2026
35 changes
2 changes
Enhancements to existing features
This update simplifies the process of generating consolidated invoices from Point of Sale orders. Previously, invalid orders (like those already invoiced) would halt the entire process. Now, any problematic orders are automatically ignored, allowing users to generate invoices for the valid orders efficiently. This enhances bulk invoice generation capabilities.
Original PR description
When trying to create a consolidated invoice in the POS from multiple orders, if any of them would not be valid (i.e. invoice already generated, or order still in draft), then Odoo would throw an error and not do anything. Now the orders for which invoices can't be generated will just be ignored, but for the rest of the orders the invoices will be generated as usual. This should make it easier to bulk select and generate invoices only where necessary. Task-[5491082](https://www.odoo.com/odoo/project/1737/tasks/5491082) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#243851
This update enhances the restaurant POS system by automatically summing guest counts when multiple linked tables are used. Previously, each table was tracked separately. Now, when tables are linked, the system accurately reflects the total number of guests across all linked tables, providing a more complete picture of customer occupancy.
Original PR description
When two tables are linked in the pos, we would like to sum the guests. Here an example : If Table 1 has two guests and Table 2 has three guests, then Table 1&2 will have five guests. task: 5490906 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#243726
3 changes
Enhancements to existing features
This update enhances the testing process for paying invoices with bank statement lines within the Odoo accounting system. The change introduces a reusable test helper, streamlining testing and ensuring more accurate invoice payment simulations. This improves the reliability of our accounting module's payment functionality.
Original PR description
Forward-Port-Of: odoo/odoo#244377 Forward-Port-Of: odoo/odoo#244281
This update organizes UBL test files for better compatibility with future move formats and improved schema validation. The change improves the structure of test data, streamlining development and testing processes related to UBL invoice generation.
Original PR description
This commit rearranges the UBL test files' subfolder to be one level higher, from `export/bis3/be` to `export/bis3/invoice/be`, in preparation for supporting different move formats and for better ignore schema support. task-4891206 Forward-Port-Of: odoo/odoo#244665
This update optimizes how Odoo generates reports by grouping related database queries. Previously, each report filter required a separate SQL query, which was slow. Now, multiple filters targeting the same data are combined into a single query, resulting in faster report generation times. This change specifically impacts report performance.
Original PR description
Before this commit, the 'domain' engine was never batched: one expression to evaluate caused one SQL query to be run just for it. With this commit, we group domains that could be evaluated together. Essentially, when we have domains targetting the same many2one field of account.move.line (typically account_id, with conditions like 'account_id.code' or 'account_id.account_type'), we run only one SQL query for all of them, targetting all the move lines according to the report filters. Then, we iterate on its result for each domain to evaluate. When iterating over the results, we filter the ones we keep by searching separately on each traversing model (in our example, account.account), to isolate the ones that are actually targetted by each expression. Tested on our prod. With this, opening the Generic Balance Sheet goes from 1min 35s to 36s. opw-5130725 Forward-Port-Of: odoo/enterprise#101725
5 changes
Enhancements to existing features
This update enhances the user experience by adding a cursor pointer to the headers of statement summaries in the accounting module. This allows users to easily navigate and explore their financial data more efficiently. It's a simple change designed to improve usability.
Original PR description
This improves the user experience by indicating that the headers are clickable. No task ID
This update ensures Odoo correctly handles the new 11% and 21% VAT rates introduced in Romania. By adding missing tax mappings, the system now accurately reflects the latest Romanian VAT regulations and ensures proper fiscal position calculations.
Original PR description
The new 11% and 21% taxes introduced with the updated Romanian VAT law were added with this commit https://github.com/odoo/odoo/commit/2026212d0f7ffc217be3c6a2ff2abe5288c18afb , but some tax mappings were missing. This commit completes the setup by adding the required tax mappings, ensuring the new rates work correctly with fiscal positions. task-5480159 Forward-Port-Of: odoo/odoo#244602 Forward-Port-Of: odoo/odoo#243452
This update enhances the reliability of our IoT Box connections by directly using IP addresses instead of domain names. When LNA is enabled, the system now retrieves the IoT Box's IP address, preventing potential issues caused by DNS resolution delays. This ensures smoother data transmission and improved system performance.
Original PR description
In order to avoid DNS resolution issues, we now parse the domain to get the IP of the IoT Box if LNA is enabled.
This update adjusts the location of UBL test files within the system, streamlining the testing process for future developments. This change prepares the system for supporting varied invoice formats and enhances the ability to validate schema compliance. It’s a routine update to improve development efficiency.
Original PR description
This commit rearranges the UBL test files' subfolder to be one level higher, from `export/bis3/be` to `export/bis3/invoice/be`, in preparation for supporting different move formats and for better ignore schema support. task-4891206 Forward-Port-Of: odoo/odoo#244665
This update optimizes how Odoo generates reports by grouping related database queries. Previously, each report filter required a separate SQL query, which was slow. Now, multiple filters targeting the same data are combined into a single query, significantly speeding up report generation times – specifically, the Generic Balance Sheet now runs in 36 seconds instead of 1 minute 35 seconds.
Original PR description
Before this commit, the 'domain' engine was never batched: one expression to evaluate caused one SQL query to be run just for it. With this commit, we group domains that could be evaluated together. Essentially, when we have domains targetting the same many2one field of account.move.line (typically account_id, with conditions like 'account_id.code' or 'account_id.account_type'), we run only one SQL query for all of them, targetting all the move lines according to the report filters. Then, we iterate on its result for each domain to evaluate. When iterating over the results, we filter the ones we keep by searching separately on each traversing model (in our example, account.account), to isolate the ones that are actually targetted by each expression. Tested on our prod. With this, opening the Generic Balance Sheet goes from 1min 35s to 36s. opw-5130725 Forward-Port-Of: odoo/enterprise#101725
2 changes
Enhancements to existing features
This update organizes UBL test files for better compatibility with future move formats and improved schema validation. The change simplifies testing and prepares the system for broader support, enhancing the reliability of UBL invoice processing.
Original PR description
This commit rearranges the UBL test files' subfolder to be one level higher, from `export/bis3/be` to `export/bis3/invoice/be`, in preparation for supporting different move formats and for better ignore schema support. task-4891206 Forward-Port-Of: odoo/odoo#244665
This update optimizes how Odoo reports process data, specifically when filtering by related account fields. By grouping similar domain searches, the system now runs fewer database queries, leading to faster report generation. This change reduces the time it takes to generate reports like the Generic Balance Sheet.
Original PR description
Before this commit, the 'domain' engine was never batched: one expression to evaluate caused one SQL query to be run just for it. With this commit, we group domains that could be evaluated together. Essentially, when we have domains targetting the same many2one field of account.move.line (typically account_id, with conditions like 'account_id.code' or 'account_id.account_type'), we run only one SQL query for all of them, targetting all the move lines according to the report filters. Then, we iterate on its result for each domain to evaluate. When iterating over the results, we filter the ones we keep by searching separately on each traversing model (in our example, account.account), to isolate the ones that are actually targetted by each expression. Tested on our prod. With this, opening the Generic Balance Sheet goes from 1min 35s to 36s. opw-5130725 Forward-Port-Of: odoo/enterprise#101725
19 changes
Enhancements to existing features
This update adjusts the maximum NSSF (National Social Security Fund) contribution limits to align with the latest regulations under the 2013 NSSF Act. Specifically, the lower and upper earnings limits have been revised, impacting the total combined contribution a worker can make. This ensures compliance with current Kenyan law.
Original PR description
This commit updates the NSSF Lower and Upper Earnings Limits in accordance with the 4th year of implementation of the NSSF Act 2013. - Set Lower Earnings Limit (Tier 1) to 9,000. - Set Upper Earnings Limit (Tier 2) to 108,000. - Resulting max combined contribution is now 6,480. Task: 5485002
This update enhances the user experience by visually indicating inactive comodel records (like contacts and users) within Odoo screens. Inactive records are now displayed with a faded text style and grayed-out avatars, making it easier for users to quickly identify and manage archived data. This improves clarity and reduces the need to manually check record status.
Original PR description
**WIP WIP WIP** When a screen displays comodel records (M2x), the only way to check if the record is archived is to open it. This commit sets a `text-faded` on M2x inactive comodel records and grays out the avatars of inactive contacts/users. task-5469063
This update enhances the flexibility of website design within Odoo by introducing a new system for modifying shape groups. Plugins can now directly adjust these groups, allowing for more dynamic and customizable website layouts. This change improves the ability to tailor website designs to specific business needs.
Original PR description
This commit defines `image_shape_groups_providers` and `background_shape_groups_providers` as new plugin resources. These resources return functions that receive the current shape groups, allowing plugins to mutate them directly or return groups to be merged into the final configuration. Forward-Port-Of: odoo/odoo#244589 Forward-Port-Of: odoo/odoo#243121
This update removes problematic native HTML `<select>` elements from the o-spreadsheet module, addressing inconsistencies in appearance and functionality across different browsers and operating systems. This change ensures a more uniform and reliable user experience within the spreadsheet application.
Original PR description
### [IMP] *spreadsheet*: stop using native HTML `<select>` The native `<select>` inputs have multiple issues: - Since their dropdown is rendered by the OS/browser, we have no control over its style and it can look wildly different to the rest of our UI. - We also cannot control its size, which can make it even uglier. - And on some browsers/OS, clicking on a <select> doesn't even trigger a click event(!?), which breaks our onClick external listeners. We decided to remove all of the native <select> inputs in o-spreadsheet. This commit adapts the enterprise tests accordingly. Task: [5213725](https://www.odoo.com/web#id=5213725&cids=1&menu_id=4720&action=333&active_id=2328&model=project.task&view_type=form)
This update enhances the testing process for Odoo's point-of-sale and self-order modules by making test utilities more realistic. The changes ensure proper initialization and validation of ticket generation, leading to more reliable test results. Additionally, a redundant model has been removed to streamline the system.
Original PR description
pos*: point_of_sale, pos_self_order Previously, ticket-generation tests relied on manual render calls, bypassing initialization logic and missing key method flows. This update refactors the test utilities to mimic real-life execution: tickets are now initialized via the main generation methods, and the final printed ticket is validated through the printer model. Additionally, Remove the extra pos.printer model from the self-order model loading Task-5391327
This update streamlines the process of uploading certifications within Odoo. The team has simplified the system by using a standard activity type for uploads, removing a redundant and complex setup. This change improves efficiency and reduces potential issues with managing certification data.
Original PR description
Simplify the activity type corpus as there is no dedicated logic requiring a specific mail activity type for uploading certifications. Task-5484984
This update enhances the UBO Form data upload process by adding a key piece of information – the ‘res_model’ – to the activity data. This improves the accuracy and completeness of the data sent during uploads, streamlining the reporting process for compliance. It’s a small change designed to improve convenience and data quality.
Original PR description
Improve convenience. Task-5484984
This update enhances how Odoo determines if a holiday falls within a specific year. The change utilizes a more reliable method for comparing dates, ensuring greater accuracy in holiday calculations and scheduling. This improves the overall reliability of the holiday management system.
Original PR description
This commit uses the Luxon method `hasSame` to compare `DateTime` years.
This update introduces a new panel within polls that displays who has voted for each option. This allows users to gain a better understanding of poll participation and trends, improving decision-making based on voting data. It enhances the poll experience by providing valuable insights.
Original PR description
Like for reactions, its interresting to be able to see who votes for which option during a poll. This PR introduces a panel in order to show it. task-5207317 <img width="500" alt="image" src="https://github.com/user-attachments/assets/8c15053b-9520-4603-8099-26521d09efdb" /> <img width="403" height="572" alt="image" src="https://github.com/user-attachments/assets/e1f0ebe3-97f9-488c-a735-825dd0ff6494" />
This update allows us to manage properties for all applicants, not just those linked to a specific job. Previously, applicants without a job were unmanageable. Now, properties are defined at the company level, streamlining recruitment processes and providing a more complete view of potential candidates.
Original PR description
Before this PR it was not possible to assign or manage properties for Talents or Applicants who were not linked to any specific Job Position. After this PR the properties are defined based on the company , allowing properties to be managed at the company level and used for applicants without job_id. Task-5212981
This update allows users to select multiple values when configuring visibility rules for website forms, specifically with 'Contains' or 'Doesn't Contain' comparators. Previously, these rules only supported single value selections, limiting flexibility. This change improves the user experience and ensures visibility rules align with the underlying multi-value logic of fields like select, checkbox, and radio.
Original PR description
Steps to reproduce: 1. Go to Website -> Edit Mode. 2. Drag and drop a "Contact Us" form. 3. Add two fields: - selection field (e.g. "Author") - text field. 4. Edit the text field's visibility and select comparator "Contains" or "Doesn't Contain". 5. Try selecting multiple values (e.g. "Mitchell Admin" and "Marc Demo"). 6. Only one value can be selected, behaving like equality checks. Before this commit, visibility rules using the "Contains" or "Doesn't Contain" comparator behaved like equality checks. Users were unable to select multiple values when configuring visibility conditions, even when the dependency field supported multi-value logic (select, checkbox, radio). This commit adds support for choosing multiple values when the comparator is "Contains" or "Doesn't Contain". Visibility now evaluates correctly for dependency fields of type select, checkbox or radio. task-4203938
This update enhances the user experience of the signature thank you dialog by modernizing its design and improving readability. The changes include a simplified layout, reduced button sizes, and clearer date formatting, resulting in a more professional and user-friendly experience for customers.
Original PR description
This task improves the user experience in the signature thank you dialog by modernizing its layout, reducing button sizes, truncating long labels, and formatting dates in a more readable way. task-5408501
This update improves website performance by automatically adjusting image sizes based on screen width using 'srcset' support. This reduces loading times, lowers data consumption on mobile devices, and optimizes image delivery for a better user experience. It also ensures proper deletion of image variants when attachments are removed.
Original PR description
*: test_website_modules, web, website_sale, website Currently the `/web/image` and t-field images only have one selectable size whatever the device, which can lead to lower performance and waste of…
*: test_website_modules, web, website_sale, website Currently the `/web/image` and t-field images only have one selectable size whatever the device, which can lead to lower performance and waste of ressources. This PR adds srcset support for the images in the website, so the browser can choose the best size for the screen. Now, if the screen width is reduced, the page can load a smaller sized image to reduce the loading time. This can help increase the performances and lower the data consumption on mid-range and lowcost smartphones. For `/web/image` images, we are generating new images at these sizes: 600, 750, 900, 1080 and 1280 These sizes are optimized so it can fit most phones on the market, while reducing the number of images we have to generate and store. The maximum size being the one selected by the user. To further reduce the number of images, for a size to be generated, it needs to be at least 15% smaller than the original image. For t-field images, we are using the already generated images image_128, image_256 ... image_1920, the maximum size being the size of the `preview_image`. task-4563867
This update improves the email sent to employees after they confirm their appraisals. The email template has been updated to provide a clearer and more professional experience, enhancing communication and user satisfaction. This change focuses on improving the user experience within the HR app.
Original PR description
Task: 5502875
This update enhances the restaurant POS system by automatically summing guest counts when multiple linked tables are used. Previously, each table was counted separately. Now, if two tables are linked, the total number of guests across both tables is accurately displayed, providing a more complete view of customer occupancy.
Original PR description
When two tables are linked in the pos, we would like to sum the guests. Here an example : If Table 1 has two guests and Table 2 has three guests, then Table 1&2 will have five guests. task: 5490906 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#243726
This update simplifies the process of generating consolidated invoices from point-of-sale orders. Previously, invalid orders (like those already invoiced) would halt the entire process. Now, any problematic orders are automatically ignored, allowing for more efficient bulk invoice generation for valid orders.
Original PR description
When trying to create a consolidated invoice in the POS from multiple orders, if any of them would not be valid (i.e. invoice already generated, or order still in draft), then Odoo would throw an error and not do anything. Now the orders for which invoices can't be generated will just be ignored, but for the rest of the orders the invoices will be generated as usual. This should make it easier to bulk select and generate invoices only where necessary. Task-[5491082](https://www.odoo.com/odoo/project/1737/tasks/5491082) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#243851
This update incorporates new accounting entries for Mexican tax regulations (l10n_mx) and makes adjustments to expense reporting within the HR module. These changes improve compliance with local tax laws and streamline the process for managing employee expenses.
Original PR description
--- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adds a warning message to the tax return process, alerting users when the companies they're currently managing don't align with the companies selected for the return. This prevents potential errors and ensures users are accurately reporting their business data for tax purposes.
Original PR description
Adds a warning banner to the return kanban view, when the user's active companies do not match the companies on the return. task-5213029
This pull request updates the o_spreadsheet library, which is used for generating spreadsheets within Odoo. It includes bug fixes, performance improvements, and new features related to exporting data, handling cell formatting, and improving the overall spreadsheet functionality. These changes enhance data accuracy and usability for users.
Original PR description
### Contains the following commits: https://github.com/odoo/o-spreadsheet/commit/fa080c2649 [REL] 19.2.0-alpha.4 [Task: 0](https://www.odoo.com/odoo/2328/tasks/0)…
### Contains the following commits: https://github.com/odoo/o-spreadsheet/commit/fa080c2649 [REL] 19.2.0-alpha.4 [Task: 0](https://www.odoo.com/odoo/2328/tasks/0) https://github.com/odoo/o-spreadsheet/commit/a8558210e1 [IMP] xlsx: export clip [Task: 5368130](https://www.odoo.com/odoo/2328/tasks/5368130) https://github.com/odoo/o-spreadsheet/commit/552671f064 [IMP] export: export align left when the cell content is a number; [Task: 5368130](https://www.odoo.com/odoo/2328/tasks/5368130) https://github.com/odoo/o-spreadsheet/commit/c7dd859e47 [FIX] range: add result changeType [Task: 5095364](https://www.odoo.com/odoo/2328/tasks/5095364) https://github.com/odoo/o-spreadsheet/commit/a13c409795 [FIX] range: adapt string XC on sheet rename [Task: 5095364](https://www.odoo.com/odoo/2328/tasks/5095364) https://github.com/odoo/o-spreadsheet/commit/dc2d50df94 [FIX] range: rename parameter [Task: 5095364](https://www.odoo.com/odoo/2328/tasks/5095364) https://github.com/odoo/o-spreadsheet/commit/02db1afd89 [FIX] range: add range to NONE [Task: 5095364](https://www.odoo.com/odoo/2328/tasks/5095364) https://github.com/odoo/o-spreadsheet/commit/21d978489f [PERF] evaluation: fast predicate path for empty strings [Task: 0](https://www.odoo.com/odoo/2328/tasks/0) https://github.com/odoo/o-spreadsheet/commit/adc4472786 [FIX] Actions: ensure the sequence is applied on action children [Task: 5452669](https://www.odoo.com/odoo/2328/tasks/5452669) https://github.com/odoo/o-spreadsheet/commit/8a81ade707 [FIX] helpers: export chart check type from runtime config [Task: 5446988](https://www.odoo.com/odoo/2328/tasks/5446988) https://github.com/odoo/o-spreadsheet/commit/fe74ceacef [IMP] components: remove native `<select>` inputs [Task: 5213725](https://www.odoo.com/odoo/2328/tasks/5213725) https://github.com/odoo/o-spreadsheet/commit/bc31a7a7cf [PERF] evaluation: don't spread single element matrix [Task: 5491138](https://www.odoo.com/odoo/2328/tasks/5491138) https://github.com/odoo/o-spreadsheet/commit/497936b7e2 [FIX] evaluation: remove spread relation [Task: 5491138](https://www.odoo.com/odoo/2328/tasks/5491138) https://github.com/odoo/o-spreadsheet/commit/56ce121432 [IMP] actions: align dropdown flow with other data validations [Task: 5423990](https://www.odoo.com/odoo/2328/tasks/5423990) https://github.com/odoo/o-spreadsheet/commit/5781c0b632 [FIX] composer: prevent autocomplete from closing on grid icon drag [Task: 5392156](https://www.odoo.com/odoo/2328/tasks/5392156) https://github.com/odoo/o-spreadsheet/commit/9ce94f278a [IMP] charts: showValues is now exported in Excel [Task: 5213598](https://www.odoo.com/odoo/2328/tasks/5213598) https://github.com/odoo/o-spreadsheet/commit/817c020291 [FIX] vectorization: fix error message on size mismatch [Task: 5331324](https://www.odoo.com/odoo/2328/tasks/5331324) https://github.com/odoo/o-spreadsheet/commit/3d9111f2ed [FIX] chart: ignore NoChanges in gauge/scorecard side panel errors [Task: 5478288](https://www.odoo.com/odoo/2328/tasks/5478288) https://github.com/odoo/o-spreadsheet/commit/ea662873a1 [IMP] formatting: unify the formatting with odoo chart views [Task: 5435022](https://www.odoo.com/odoo/2328/tasks/5435022) https://github.com/odoo/o-spreadsheet/commit/fe0dca8520 [IMP] side panel: remove pin [Task: 5447038](https://www.odoo.com/odoo/2328/tasks/5447038) https://github.com/odoo/o-spreadsheet/commit/5ceba0b4aa [REF] cell: getCells returns an array [Task: 5491227](https://www.odoo.com/odoo/2328/tasks/5491227) https://github.com/odoo/o-spreadsheet/commit/2ceff21c29 [PERF] cells: numeric cell id [Task: 5491227](https://www.odoo.com/odoo/2328/tasks/5491227) https://github.com/odoo/o-spreadsheet/commit/889304181e [IMP] style: rotation xlsx export [Task: 5400633](https://www.odoo.com/odoo/2328/tasks/5400633) https://github.com/odoo/o-spreadsheet/commit/e966e74b81 [FIX] style: rotation fix for centered text [Task: 5400633](https://www.odoo.com/odoo/2328/tasks/5400633) https://github.com/odoo/o-spreadsheet/commit/66249da831 [IMP] style: rotation reduce rotation angle precision [Task: 5400633](https://www.odoo.com/odoo/2328/tasks/5400633) https://github.com/odoo/o-spreadsheet/commit/3299483fc9 [FIX] header_size: wrong row size from wrapped number [Task: 4878338](https://www.odoo.com/odoo/2328/tasks/4878338) Co-authored-by: Florian Damhaut (flda) <flda@odoo.com> Co-authored-by: Anthony Hendrickx (anhe) <anhe@odoo.com> Co-authored-by: Alexis Lacroix (laa) <laa@odoo.com> Co-authored-by: Lucas Lefèvre (lul) <lul@odoo.com> Co-authored-by: Adrien Minne (adrm) <adrm@odoo.com> Co-authored-by: Ronak Mukeshbhai Bharadiya (rmbh) <rmbh@odoo.com> Co-authored-by: Dhrutik Patel (dhrp) <dhrp@odoo.com> Co-authored-by: Rémi Rahir (rar) <rar@odoo.com> Co-authored-by: Pierre Rousseau (pro) <pro@odoo.com> Co-authored-by: Vincent Schippefilt (vsc) <vsc@odoo.com> Co-authored-by: Marceline Thomas (matho) <matho@odoo.com>
3 changes
Enhancements to existing features
This update enhances the Odoo system's handling of VAT exemptions by providing a complete list of VAT exemption reason codes (VATEX) as defined by EN16931. Previously, the list was incomplete, which could lead to inaccuracies in VAT reporting. This change ensures compliance and improved data accuracy for VAT calculations.
Original PR description
The list is there but not exhaustive. Make the exhaustive list of VAT exemption reason codes (VATEX) available. task-5443294 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update enhances the testing process for invoice payments, specifically when using bank statement data. A new test helper has been introduced to streamline these tests, ensuring more reliable payment processing and reducing potential errors. This improves the overall accuracy and stability of invoice payments.
Original PR description
Forward-Port-Of: odoo/odoo#244377 Forward-Port-Of: odoo/odoo#244281
This update reorganizes the UBL test files within the Odoo system, moving them to a more structured folder. This change prepares the system for future support of diverse invoice formats and enhances the ability to validate schema compliance. It’s a routine update to improve testing and maintainability.
Original PR description
This commit rearranges the UBL test files' subfolder to be one level higher, from `export/bis3/be` to `export/bis3/invoice/be`, in preparation for supporting different move formats and for better ignore schema support. task-4891206 Forward-Port-Of: odoo/odoo#244665
1 change
Enhancements to existing features
This update adds a comprehensive list of VAT exemption reason codes (VATEX) to the account_edi_ubl_cii_tax_extension module. This ensures greater accuracy and compliance with European regulations regarding VAT exemptions, particularly related to EN16931 standards. It improves the system's ability to correctly process and report on VAT exemptions.
Original PR description
The list is there but not exhaustive. Make the exhaustive list of VAT exemption reason codes (VATEX) available. task-5443294 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr