Daily updates from Odoo
Friday, February 9, 2024
3 changes · 17.0
Enhancements to existing features
Database indexes have been added to the VoIP call records to speed up searches for recent calls and missed call counts. This improvement ensures the system remains responsive even when the call history grows to millions of records in active deployments.
Original PR description
## Description Add missing index on `user_id` and `partner_id` to support the searches done in `get_recent_phone_calls` and `_get_number_of_missed_calls`. In a long living database that is making heavy use of the module, the table can grow to the millions of records.
This improvement ensures that mobile and phone numbers for job applicants are automatically synchronized with their associated partner records. If a partner doesn't exist yet, the system will create one using the applicant's contact information. This streamlines the recruitment process by keeping contact details consistent across the system.
Original PR description
In this PR, the mobile/phone number is in sync with the partner if the partner is not there then it will be generated based on the applicant information Task-3635976
When new employees are created from job applicants, they will no longer receive an email notification about their creation. Instead, a log entry will be recorded internally. This change improves the employee onboarding experience by reducing unnecessary automated emails while maintaining a record of the action.
Original PR description
So far when new employee was created from applicant he got a mail with notification about employee creation. It's not a desired behaviour so this change makes just a log note about it. There was also a needed to make a small change in mailing - message_log_with_view method is no longer private as it needs to be used in this case. task-3621545 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 Forward-Port-Of: odoo/odoo#150981 Forward-Port-Of: odoo/odoo#146130