Daily updates from Odoo
Monday, July 21, 2025
4 changes
3 changes
Enhancements to existing features
The ticket screen now shows the scheduled date as well as the time for future takeaway orders, helping staff identify when orders are due. It also improves time slot visibility in dark mode so current takeaway times are easier to read.
Original PR description
Commit 1 - add date for future orders on ticket screen ----------------- ### Before this commit: - On the ticket screen, only the preset time (e.g., 12:00) was shown for all orders, including future ones. ### After this commit: - For future orders (e.g., Takeaway scheduled for tomorrow), the ticket screen now shows the date above the time. Commit 2 - visibility of time slot on ticket screen for takeaway ---------------------------------------- ### Before this commit: - If we made a Takeaway order and selected the current time as a slot, the time was not clearly visible in dark mode.  ### After this commit: - The current time slot is now clearly visible on the ticket screen, even in dark mode.  Task-4916474 Forward-Port-Of: odoo/odoo#217518
Posted Saudi invoice PDFs can no longer be deleted once generated and submitted, helping preserve audit records required by ZATCA. The update also handles previously rejected Saudi e-invoices so outdated PDFs can be removed after successful resubmission when appropriate.
Original PR description
Task ID: 4730762 Description of the issue/feature this PR addresses: - As per ZATCA's auditability principles (clause 3 sub-heading C, paragraph 2): The Compliant E-Invoice solution must be able to…
Task ID: 4730762 Description of the issue/feature this PR addresses: - As per ZATCA's auditability principles (clause 3 sub-heading C, paragraph 2): The Compliant E-Invoice solution must be able to protect the generated Electronic Invoices and Electronic Notes from alteration or deletion. - This PR aims to restrict the deletion of valid invoice PDFs once the invoice has been generated & sent to ZATCA. Current Behavior before PR: - Invoice PDF attachments were allowed to be deleted in l10n_sa, even when the invoice is posted. - For l10n_sa_edi, if and invoice PDF is generated during a rejected state, it is kept there unless you reset to draft. Desired behavior after PR is merged: - in l10n_sa, deleting an attached invoice PDF raises a user error (reset to draft is required to detach the invoice first) - For l10n_sa_edi, if the invoice PDF is generated during a rejected state, but the invoice is resubmtited to ZATCA and accepted. The creation & write dates of the attachment linked & edi_documents respectively are compared and the deletion of the pdf attachment is allowed to be deleted in the case where the creation date was less than the write date. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#218648 Forward-Port-Of: odoo/odoo#211192
The Chart of Accounts views now offer more useful column visibility choices for accounting users. Users can choose to show or hide the Active column, while Allow Reconciliation is moved into optional hidden columns to keep the default view cleaner.
Original PR description
In this commit: - Moved the 'Allow Reconciliation' column to the optional 'Hide' section. - Added the 'Active' column to the optional 'Show' section. - Added the 'Active' column to the optional 'Hide' section in 'Chart Of Accounts' menu. task-4907725 Forward-Port-Of: odoo/odoo#216875
1 change
Enhancements to existing features
Tax return entries on the accounting dashboard, such as monthly VAT returns, can now be clicked directly. This opens the relevant Tax Return view with clearer filtering and monthly grouping, helping users review returns faster and with less navigation.
Original PR description
This commit improves the accounting dashboard by making the tax return entries (e.g., VAT Apr, VAT May) clickable. Clicking on a return now opens Tax Return view filter by return type and the grouped by month for better clarity and consistency. > Task-4912633 Forward-Port-Of: odoo/enterprise#89533