Merge PR #2899 into 16.0

Signed-off-by StefanRijnhart
pull/2901/head
OCA-git-bot 2024-04-05 13:44:57 +00:00
commit a3c4fc0c85
2 changed files with 6 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class IrCron(models.Model):
# be 1 hour too soon) and the date will just be incremented of 1
# hour, each hour...until the changes time really occurs...
if job["daylight_saving_time_resistant"]:
with cls.pool.cursor() as job_cr:
with db.cursor() as job_cr:
try:
cron = api.Environment(
job_cr,

View File

@ -29,6 +29,11 @@ class TestDST(TransactionCase):
{"nextcall": datetime_str, "daylight_saving_time_resistant": True}
)
cron.flush_recordset()
cron.ir_actions_server_id.flush_recordset(
fnames=[
"model_name",
],
)
self.env.cr.execute("SELECT * FROM ir_cron WHERE id = %s", (cron.id,))
job = self.env.cr.dictfetchall()[0]
timezone_date_orig = fields.Datetime.context_timestamp(cron, cron.nextcall)