Daily updates from Odoo
Friday, September 16, 2022
11 changes
Enhancements to existing features
The payroll dashboard now uses a newer rich text field component and updated data handling behind the scenes. This should make dashboard content more reliable and easier to maintain without changing the overall payroll workflow for users.
Original PR description
Make use of the new html field component in the dashboard + and also the relational model hook and api instead of relying on plain objects.
This update replaces outdated form layout styling with newer supported layout classes across several Odoo apps. It helps keep pages compatible with the current design framework and also fixes alignment issues in the VoIP transfer call popup.
The quality worksheet validation screen and quality domain field have been modernized using Odoo’s newer interface framework. This should improve maintainability and help keep quality control workflows consistent with the rest of the platform, with minimal direct change for end users.
Original PR description
This commit converts both the `worksheet_validation` form and the `quality_domain_field` to OWL TaskId: 2986089
Timesheet entries now verify that the linked employee is active when they are created. This helps prevent records from being logged against inactive employees, improving data accuracy across timesheet-related workflows.
Original PR description
At creation of aal, check that timesheets have an active employee. task-2884736 Related PR: odoo/odoo#93823
Odoo Sign can now add an optional branded frame to signature areas showing that the document was signed with Odoo. The frame includes a signer-specific verification hash, with part shown near the signature and the full value added at the end of the document, improving trust and traceability.
Original PR description
Add an optional 'Signed with Odoo signed' frame on sign items. These frame also feature a hash unique to the signer (signer email + db_uuid) which is partially present on the frame and present at the end of the document. task-id : 2946442
CRM dashboard spreadsheets have been refreshed to provide more current and useful views of leads and pipeline performance. This helps teams monitor sales activity and make decisions with clearer dashboard information.
Knowledge articles now use the newer emoji picker when users choose or change an article icon. The experience remains familiar while adding a clear option to remove an existing icon directly from the picker.
Original PR description
This commit replaces the legacy emoji picker by the new emoji picker in knowledge. The emoji picker is triggered by the same user interactions as the legacy emoji picker, i.e. click on an icon in a knowledge article. Knowledge emoji picker has the default behaviour of base emoji picker, and then slightly extends with a action to remove the icon of emoji. This remove action is a button in the header part of emoji picker. Task-2980528 Community: https://github.com/odoo/odoo/pull/100010
Tasks created from documents now include a log note, making it easier for teams to understand where work originated. Planning shifts created from a task's planned hours action now use the task dates by default, reducing manual entry and helping schedules stay aligned.
Original PR description
** = project_forecast,planning Purpose of this commit to improve generic usage of project app. So, in this commit done following changes: - add log note for tasks created from documents - add default dates for Hour Planned button's action to set default dates on newly created shifts according task's dates. task-2853991
Task bars in Gantt views now show start time, end time, allocated hours, and task name when the planned work is under 24 hours. This makes short tasks easier to understand at a glance, and project contract buttons are hidden when no related contract exists.
Original PR description
-When the task plan is less than 24 hours, the start hours, end hours, and allocated hours and the name of the task will appear in the gantt view in the pill title. Example- '7:00 AM - 11:00 AM (4h) - DST Task 1' Currently this features is only in planning. Create a new services_web_gantt module and it's used in planning and project_enterpise modules. -If the project does not have a link to any of the contracts then the contracts stat button will not appear in the project form view. task-2672783
This update improves the Field Service task creation experience by placing a helper tip in a more useful position. It also makes worksheet settings more reliable by disabling worksheets by default for non-Field Service projects and stabilizing related automated checks.
Original PR description
In this commit: - The tip for the partner in create task step is changed from buttom to right - project.project: the 'worksheets' option should be set to false by default if is_fsm is false. - test_project_worksheet_template_propagation fail if a default_worksheet is set as we are asserting fsm_project.worksheet_template_id but when creating fsm_project, if a default_worksheet is set, when _compute_worksheet_template_id is called, the project worksheet_template_id will be set as the default_worksheet, to avoid this instability, we assert that fsm_project and its task have the same worksheet_template_id at the beginning of the test to work on both cases (No worksheet, Default worksheet) Task-2849270
The Appointment, Knowledge, Planning, and Sign apps are now configured to install automatically when their requirements are met. This reduces manual setup work and helps businesses activate related workflows more smoothly.