Daily updates from Odoo
Sunday, June 22, 2025
3 changes
Enhancements to existing features
Timesheets can now be entered and reviewed in a calendar view, making it easier to plan work across multiple employees and days. This improves data entry speed and helps reduce mistakes when creating many timesheet entries.
Original PR description
Task-4760337
Subscription payment links now take customers to the clearer customer portal page instead of a generic payment page. If the subscription is still a quote, customers are sent to the standard sales order portal flow, making the payment journey easier to understand.
Original PR description
Payment links will redirect the user to the subscription portal view instead of the `/payment/pay` route, which was unclear for the user. When the subscription is still a quote, it will redirect to the Sales Order portal view, following the standard flow logic. task-3087715 See also: - https://github.com/odoo/odoo/pull/162177
Manufacturing order costs can now use the planned duration of a work order when the operation is configured for estimated costing. This helps produce more realistic costs and inventory valuations when workers spend time on an operation but only briefly record activity in Odoo.
Original PR description
The cost of a MO is currently based on the actual time. In the case a worker worked 3 hours but only logged in Odoo to register a serial number, the actual time would only be a few seconds. For this reason, we are adding the possibility to compute the cost based on the duration_expected of the workorder. The conditions to use the duration_expected are: - the workorder is linked to an existing operation - the cost_mode of the operation is set to 'estimated' - there's a duration_expected on the workorder This affects the MO overview and the valuation layers. task 4850419