From 501e32b2dbceb3dc35fb437aec749f4c0478d3a9 Mon Sep 17 00:00:00 2001 From: alt-odoo <alt@odoo.com> Date: Thu, 17 Jun 2021 09:04:31 +0000 Subject: [PATCH] [FIX] fleet: correct cost date on recurring costs creation When creating the recurring costs through the cron task, we should set the date accordingly with the specified recurrence instead of setting it to today. --- addons/fleet/models/fleet_vehicle_cost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/fleet/models/fleet_vehicle_cost.py b/addons/fleet/models/fleet_vehicle_cost.py index c66403290e5a..2ac54f695772 100644 --- a/addons/fleet/models/fleet_vehicle_cost.py +++ b/addons/fleet/models/fleet_vehicle_cost.py @@ -253,7 +253,7 @@ class FleetVehicleLogContract(models.Model): while (startdate <= today) & (startdate <= contract.expiration_date): data = { 'amount': contract.cost_generated, - 'date': fields.Date.context_today(self), + 'date': startdate, 'vehicle_id': contract.vehicle_id.id, 'cost_subtype_id': contract.cost_subtype_id.id, 'contract_id': contract.id, -- GitLab