Daily updates from Odoo
Monday, April 29, 2019
4 changes
Enhancements to existing features
Event managers can now use an activity view to quickly see activities linked to event tracks. This makes it easier to follow up on planned tasks and logged actions without opening each track individually.
Original PR description
Description of the issue/feature this PR addresses: Add the missing activity view Current behavior before PR: There is no way to quickly view all activities for the even tracks while event tracks do allow to define activities Desired behavior after PR is merged: The activity view is added on the event tracks so you can quickly see all activities logged on event tracks:  -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The mail blacklist form no longer shows the record creation date because that information is already available in the system metadata. This keeps the form simpler and avoids displaying redundant information to users.
Original PR description
**Description of the issue/feature this PR addresses:** As discussed here https://github.com/odoo/odoo/pull/27947, the `create_date` is indeed available in metadata, no need to keep it in the form view. It's unnecessary for a magic ORM field to be present in the form view. **Current behavior before PR:** `create_date` is present in the blacklist form view. **Desired behavior after PR is merged:** `create_date` is not present in the blacklist form view. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change updates the email scheduling date so it is stored as an actual date and time instead of plain text. This should make scheduled email handling more reliable and easier to use consistently across the system.
Original PR description
Description of the issue/feature this PR addresses: For effective use, scheduled_date from mail_mail class changed to Datetime Current behavior before PR: Currently scheduled_date field of mail_mail class is of type fields.Char Desired behavior after PR is merged: scheduled_date field of mail_mail class changed to fields.Datetime -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update marks a calendar module method as internal because it is not used directly by users, integrations, or the web interface. It helps keep the system cleaner and easier to maintain without changing day-to-day calendar behavior.
Original PR description
Description of the issue/feature this PR addresses: `calendar` module Current behavior before PR: Desired behavior after PR is merged: This method should be private as it is not called from RPC or Web client. Cc: @odony -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr