Daily updates from Odoo
Wednesday, March 25, 2026
3 changes
1 change
Features or functions removed from Odoo
This update removes the automatic assignment of a VoIP provider to new users. Previously, users were linked to the first available provider, which created issues for systems with multiple providers. This change ensures a more appropriate 'no provider' default, simplifying setup for businesses with diverse VoIP options.
Original PR description
Following this Pull Request, users will not be linked to any VoIP provider by default. Prior to this Pull Request, users were linked to the first `voip.provider` record found. The rationale behind this behavior has been forgotten, but it was likely implemented to spare admins with a single provider from having to assign one. However, for databases with more than one provider, "nothing" is usually the relevant default. See also: [task-6023412](https://www.odoo.com/odoo/project.task/6023412) Forward-Port-Of: odoo/enterprise#111758
1 change
Features or functions removed from Odoo
This change removes the automatic assignment of a VoIP provider to new users. Previously, users were linked to the first available provider, which created issues for systems with multiple providers. Now, users will not be linked to a VoIP provider by default, aligning with best practices for multi-provider environments.
Original PR description
Following this Pull Request, users will not be linked to any VoIP provider by default. Prior to this Pull Request, users were linked to the first `voip.provider` record found. The rationale behind this behavior has been forgotten, but it was likely implemented to spare admins with a single provider from having to assign one. However, for databases with more than one provider, "nothing" is usually the relevant default. See also: [task-6023412](https://www.odoo.com/odoo/project.task/6023412)
1 change
Features or functions removed from Odoo
This change removes a redundant field related to tracking payslip documents with tags. The feature was no longer required and has been removed from the system configuration and associated files. This simplifies the system and reduces potential maintenance overhead.
Original PR description
According to the linked task, the documents_hr_payslip_tags field is no longer needed, therefore we can remove the override of the view adding it and the field on res_config_settings (we remove the whole file since it was the only thing that it was changing). Finally we also remove the documents_tag_payslips record, which was used as a default tag but is no longer needed. Task: 5936989