Wednesday, February 12, 2025
6 changes · master
Enhancements to existing features
Sales teams can now mark quotation headers and footers to be selected automatically when creating a new quote. This reduces repetitive setup clicks while keeping existing quotations unchanged if defaults are later updated.
Original PR description
Description of the issue/feature this PR addresses: Spare a couple of clicks when selecting the headers and footers of the quotation builder. Current behavior before PR: User have to select the quote documents they want to add for each of their quotation. Desired behavior after PR is merged: User can set quote documents as `add_by_default` which, when enabled, selects the quote document by default in the quote builder of a new sale quotation. If the `add_by_default` field is modified, any previously created quote should not be affected. task-4307011 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update improves how grouped lists are ordered when records are grouped by many-to-many relationships. It helps users see grouped results in the expected business-defined order, making reports and list views easier to read.
Original PR description
WIP
The sales subscription performance test was adjusted to reflect a small extra system check introduced by new default quotation document settings. This keeps automated testing aligned with the updated sales order process without changing the user experience.
Original PR description
A new feature in the community version allows users to set default quotation documents for sales orders. This introduces an additional query in the sale order creation flow. This commit increases the max query count of a performance test to accommodate these new queries. task-4307011
This update streamlines how planning and shift links are created by using one shared method instead of two separate ones. It helps keep Planning access links consistent and easier to maintain, with updated parameters for dates, employees, and access tokens.
Original PR description
In this PR we merge the _planning_get_url and _slot_get_url method and make a single method _planning_get_url. we also change the some parameters 1. date_start 2. date_end 3. employees 4. planning_access_token task-4156813
The Sign app no longer keeps an unused availability marker for signing options. This simplifies internal option handling now that options are created when needed and reused, with no expected change for everyday users.
Original PR description
This commit removes the 'available' field from the 'sign.item.option' model as it is not used anymore neither its logic. After odoo/enterprise#75291 we create options on demand and reuse the previous options for avoiding duplicating it, with the available field being True or False. issue-from: 75291 task-4387560
The Web Studio editor now displays existing fields in alphabetical order. This makes it quicker and more predictable for users to find the field they need when customizing views.
Original PR description
**Before:** The fields under `Existing Fields` were not displayed in alphabetical order. **After:** The fields under `Existing Fields` are displayed in alphabetical order. task-4544703