Thursday, March 2, 2023
5 changes · master
Enhancements to existing features
Point of Sale X and Z reports now include additional daily sales reporting details directly in the main Point of Sale module. This gives businesses clearer end-of-day and shift reporting without needing a separate reporting add-on.
Original PR description
Description of the issue/feature this PR addresses: A module (pos_daily_sales_reports) has been added to in 16.0 and forward ported to master. In master we merge this module with the module point_of_sale. Forward-port PR: odoo/odoo#113228 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Tax display behavior is now driven by accounting rounding rules, while website sales keeps its own separate tax display setting. This makes invoice, purchase, sales, repair, and website displays more consistent and reduces duplicate configuration.
Original PR description
Before this commit, the accounting module had a setting on the selection of taxes used by the sales, purchase, website_sale, ... modules. In addition, the website_sale module had the same setting related to the accounting one. This PR isolates the tax selection parameter in the website_sale module, and instead of using the tax selection, the accounting module will use rounding method (round per line, round globally). Selecting one of the two will change the display of all account_move or other view using the tax selection setting. Display changes: In round per line, a column tax excluded will always be displayed while a column tax included will be in optional hide. On the other hand, in the round globally, only the tax excluded columns will be available. task-id: 2954332 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Users can now switch between available views directly from the command palette. This makes it faster to move between list, form, kanban, and other views without relying only on the view switcher controls.
Original PR description
This commit adds the possibility to navigate between the different views of the view switcher from the palette command. 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
Invoice extraction and customer portal documents now align their tax column display with the accounting rounding method. This makes totals clearer by consistently showing tax-excluded amounts and only showing tax-included amounts when relevant.
Original PR description
This PR is related to https://github.com/odoo/odoo/pull/99209 Before this commit, the accounting module had a setting on the selection of taxes used by many modules. In addition, the website_sale module had the same setting related to the accounting one. The community PR isolates the tax selection parameter in the website_sale module, and instead of using the tax selection, the accounting module will use rounding method (round per line, round globally). Selecting one of the two will change the display of all account_move or other view using the tax selection setting. Display changes: In round per line, a column tax excluded will always be displayed while a column tax included will be in optional hide. On the other hand, in the round globally, only the tax excluded columns will be available. task-id: 2954332
After signing a document, users now see up to three important documents that still need their signature, with quick options to sign them or ignore them. Signing actions now take users directly into signing mode, reducing extra navigation and helping documents get completed faster.
Original PR description
The sign thank you dialog now lists up to 3 most important documents that the user has to sign and gives the option to ignore them. The dialog is now slightly better worded. The Sign Next Document button lands the user directly into signing mode. task-3072737