Saturday, November 4, 2023
7 changes · 17.0
Enhancements to existing features
The point of sale receipt structure is adjusted so tax letters can be shown for each order line through a related enterprise change. This supports clearer tax information on receipts with minimal direct impact in the community module.
Original PR description
In this commit we adjust the pos module such that, in the corresponding enterprise commit, we can more easily add the tax letters corresponding to each orderline in the receipt. https://github.com/odoo/enterprise/pull/50134 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adds a helpful tooltip explaining the option for using sections in accounting reports. It makes the setting easier to understand for users configuring composite reports, reducing confusion during setup.
Original PR description
The goal of this pr is to add a tooltip to the use_sections field. task: 3569038 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The IAP "View My Services" button now takes users directly to the services list inside Odoo instead of sending them to the IAP website. This makes service management more consistent with the general settings experience and reduces navigation friction.
Original PR description
Description of the issue/feature this PR addresses: The "View My Services" button of the widget should open the IAP accounts tree view, just as the main "View My Services" button of the general settings. Current behavior before PR: View my services widget redirected to iap website Desired behavior after PR is merged: Updated the widget to redirect to tree view of services task-3580190 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The accounting screens now place the invoice date before the accounting date in list and search views. This makes the legal invoice date easier to find first, improving clarity for users reviewing or filtering invoices.
Original PR description
We currently have two date fields, "date" and "invoice_date". Before this pr, the "date" column was before the "invoice_date" field. We think it's more logical to have "invoice_date" before the other, since it's the legal date. What has been done: - Swap in the tree view the two columns - Swap in the search view the two columns --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Spreadsheet pivot table formula cells are now easier for the system to identify by using the cell’s evaluated result as the pivot display name. This improves reliability when working with pivot tables in spreadsheets without changing the user workflow.
Original PR description
In order to identify an ODOO.PIVOT.TABLE formula cell, we set the display name of the pivot as the evaluated value of the cell containing the formula. Task: 3580153 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Website page templates were cleaned up to remove repeated or conflicting styling choices. This helps pages created from these templates display more consistently without changing the underlying website features.
Original PR description
When introducing the templates for the "new page" feature in [1], on some elements classes ended up being specified twice, or being added without removing a contradicting class (e.g. different bottom paddings) This commit adjusts the blocks of the new page templates so that: - no class appears twice - only the visually applied class of several conflicting classes is kept For `pt*`, `pb*` and `o_cc*` the class with the highest number is the visually applied one. [1]: https://github.com/odoo/odoo/commit/b27d52c193a08fe6a4471c844afa3d01a33ccace task-3562147
The invoice date and transaction date fields have been reordered in the accounting module's views. The invoice date now appears first since it represents the legal date of the transaction, making the interface more intuitive for accounting users.
Original PR description
We currently have two date fields, "date" and "invoice_date". Before this pr, the "date" column was before the "invoice_date" field. We think it's more logical to have "invoice_date" before the other, since it's the legal date. What has been done: - Swap in the tree view the two columns - Swap in the search view the two columns