Wednesday, June 21, 2023
8 changes · master
Enhancements to existing features
This change removes leftover code in the Point of Sale area that was no longer being used after a previous update. It reduces unnecessary maintenance burden without changing how users interact with the system.
Original PR description
before this commit, in point_of_sale module a super call is made for the function _get_reconciled_vals , but this function has been removed/changed in this commit: https://github.com/odoo/odoo/commit/785d49f3f0a21720d8c929d597d4041918ab7f41 currently this is deadcode and not called from any where and left over during this: https://github.com/odoo/odoo/commit/785d49f3f0a21720d8c929d597d4041918ab7f41 after this commit, the dead function will be removed. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Survey print actions now open in a new window so appraisal-related survey flows work more smoothly. This improves the user experience when surveys are reused within employee appraisal processes.
Original PR description
see odoo/enterprise#37387
The e-invoicing banner text has been shortened so it fits on one line. This makes the message easier to read and reduces visual clutter for users working with invoices.
Original PR description
Goal of this pr is to improve the banner on top of all e-invoicing by shorten the text and make it one line task:3374897 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adds a missing description to the Mexican EDI Extended module manifest. It improves clarity for users and administrators reviewing the module, without changing business workflows or functionality.
Original PR description
There is no description in the current manifest. This proposed change is to add this description to the manifest.
The appraisal survey screens have been adjusted to better match the employee appraisal workflow. Unused survey buttons are hidden and view names are clarified, making the appraisal process cleaner and easier for users to navigate.
Original PR description
remove buttons not used in appraisal flow and rename views https://www.odoo.com/web#id=3127424&menu_id=4720&cids=1&action=333&active_id=1251&model=project.task&view_type=form
Helpdesk team labels have been updated to say “Helpdesk Team” instead of the more generic “Team.” This makes it easier for users to distinguish helpdesk teams from teams used in other Odoo apps such as Sales, CRM, Maintenance, or Quality.
Original PR description
Several apps in odoo have the notion of team (crm/sales, maintenance, quality...). We need to differentiate helpdesk teams from the other kind of teams. task-3251737
Contract templates now hide fields and actions that are only relevant when an employee is linked. This reduces empty information and unnecessary options, making the template view clearer for HR users.
Original PR description
A contract is a template when there is no employee linked to it, so the employee, payslips column of the view will always be empty and the index contract button should not need to be there, we hide it. task-3343545
Odoo Studio now shows the disable creation and disable opening settings for partner and product configurator selection fields. This gives users the same configuration controls across related field types, improving consistency when customizing forms.
Original PR description
PURPOSE
In Studio, the 'Disable creation' (no_create) and 'Disable opening' (no_open) options have been made available in the configuration tab of many2one widgets.
The purpose of this task is simply to also displayed those options for the following two widgets that inherit from the many2one widget:
res_partner_many2one
product_configurator
SPECIFICATION
In the studio configuration tab, add the 'Disable creation' (no_create) and 'Disable opening' (no_open) options to the res_partner_many2one and product_configurator widgets.
TASK 2608073