Friday, December 8, 2023
3 changes · master
Resolved issues and error corrections
ZPL product labels now print prices based on the pricelist selected in the label printing wizard. This keeps printed labels aligned with the intended customer or sales pricing and avoids showing the wrong product price.
Original PR description
before this commit, the pricelist concept is added in label printing in this commit: https://github.com/odoo/odoo/commit/168b56e0698e443508049cdb3507d1170a21725c and missed to adapt the zpl reports to respect the selected pricelist in the wizard after this commit, the price printed in the zpl product label will be based on the selected pricelist in the wizard --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update makes small popover windows more reliable by allowing them to open even when optional details are not provided. It prevents a crash in this situation, improving stability for users and developers building interface elements.
Original PR description
With this commit, it is no longer necessary to pass props when adding a popover using the popover service. Before this commit, there was a crash if no props were passed. Task ID: 3611253 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
Users can once again create a new shift directly from the selection window opened from a planning Gantt cell. This fixes a regression that hid the create option, reducing friction for scheduling teams.
Original PR description
Before this commit, due to a bad rebase the override of `getSelectCreateDialogProps` in `sale_planning` module has been reintroduced and so that override disables the create button in select create dialog displayed when we click on gantt cell. This commit removes that override to allow the user to be able to create a new shift when he is in the select create dialog.