Friday, October 23, 2020
2 changes · master
Resolved issues and error corrections
Calendar event reminders are now checked more frequently and sent more directly, reducing delays. This helps users receive meeting and event alerts closer to the intended time, including when reminder jobs are triggered manually.
Original PR description
# Purpose The purpose of this commit is to have reliable calendar event reminder. # Specifications Before, the cron was executed every 30 minutes which was leading also to delay. Now, we execute the cron every 5 minutes to reduce the possible delay in the reminder. task-2331999
This fixes a manufacturing planning issue where a work order’s planned status was not refreshed when its planned start or finish dates changed. As a result, production planning information stays accurate after schedule adjustments.
Original PR description
The _compute_is_planned() method was only triggered at the workorder creation and not at the modification of date_planned_start or date_planned_finished. This commit change the depends fields to trigger the compute at right time. 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