Saturday, July 6, 2024
3 changes · master
Code cleanup and technical improvements
This update renames an internal WhatsApp messaging data label to avoid conflicts with another record format. It helps keep upcoming data format changes safer and reduces the risk of confusion in the messaging system.
Original PR description
There is a conflict between the _to_store of the thread and the _to_store of the record, which will be highlighted when converting partner format to store. Thread is a specific use case which is therefore renamed to avoid issue. Part of task-3605717 https://github.com/odoo/odoo/pull/172120
Removed unused SMS-related data from WhatsApp message formatting. This is an internal cleanup that reduces unnecessary code without changing the user experience.
Original PR description
This value is never used anywhere. Part of task-3605717 https://github.com/odoo/odoo/pull/172074
The social push notification request and Twitter wall features now use newer website components instead of older internal widgets. This reduces maintenance risk and helps keep these website-related features aligned with Odoo's modern interface framework, with no intended change to business behavior.
Original PR description
*: social_push_notifications, website_twitter_wall There are 4 use cases left in the codebase: - Push notification popup request - Twitter wall - Website builder right panel - Mass mailing inner root widget This commit removes the first two, by just using public widgets instead. The third one is currently being converted to OWL in another PR. The last one will be investigated later.