Thursday, June 17, 2021
6 changes · master
Enhancements to existing features
Event sponsors are now easier to create with sensible defaults, and unpublished sponsors stay hidden from website footers until ready. Sales orders with event stands also avoid showing an irrelevant registration wizard, reducing confusion for staff.
Detailed transfer operations are now shown in an order that follows the picker’s route, using source and destination locations instead of creation order. This makes picking lists easier to follow and can help warehouse staff work more efficiently with fewer unnecessary movements.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: The transfer line order has no sense for a picker (it's in the order of the creation of the line) Desired behavior after PR is merged: We want to have the line of the detailed operation in the same order as the picker will be picking the products -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Belgian payroll now calculates employer social security contributions based on the number of workers during the quarter, making the amounts more accurate. These employer contributions are also included in social security certificates, improving reporting completeness for HR and payroll teams.
Resolved issues and error corrections
The website sharing snippet now sends both the page title and link when users share through WhatsApp, and it works better across desktop and mobile. Social sharing icons on event pages are also aligned more consistently, improving the appearance of event sidebars.
Original PR description
PURPOSE
1. whats-app option was not working properly in
share snippet and On click, Whats-app opens
but only sends the text without link of
shared record.
2. in the social share template Buttons aren't
centred.
SPECIFICATION
in this commit, on whats-app share button link
replace the old link (whatsapp://send?text=) with
new one (https://web.whatsapp.com/send?text=) and
in share snippet add one condition for shared record
URL. For button displayed properly centred remove the
display: inline-block property of button.
Task Id: 2557077
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThis fixes a crash that could stop certain Odoo apps, such as Website and Timesheets-related sales features, from installing in development mode. The change avoids creating invalid internal identifiers when views are linked to models with dots in their names, improving installation reliability without changing user-facing features.
Original PR description
Until now, when you create a view of type qweb with a model, we use the model
as first part to generate the key. Since this model can contains dot, it is
wrong and we got some key like ir.ui.view.gen_key_xyz
This bug has been seen with commit ee8756b31186f2f21e9b70e124f29c678cebaea7
which make the installation of website & sale_timesheet impossible in dev mode.
File /home/odoo/addons/base/models/ir_ui_view.py, line 294, in _compute_arch
arch_fs = get_view_arch_from_file(fullpath, xml_id)
File /home/odoo/addons/base/models/ir_ui_view.py, line 166, in get_view_arch_from_file
module, view_id = xmlid.split('.')
Too many values to unpack
Now we never try to make key beautiful. At first view it doesn't bring any
advantage, but only bug.
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-prThis update improves how taxes are selected when products are used across multiple companies, preventing taxes from one company from affecting documents in another. It also corrects point-of-sale amount recalculations and removes unnecessary duplicate tax filtering, helping invoices, orders, deliveries, repairs, and online sales apply the right taxes more reliably.
Original PR description
Task-ID: 2486056 Enterprise: https://github.com/odoo/enterprise/pull/18670 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr