From 7ff88653a8d903729d56598d2129cc73d5160bac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20G=C3=B6ttsch?= Date: Thu, 21 May 2026 11:20:18 +0200 Subject: [PATCH] [FIX] data_nature_importer: readd job manager --- data_nature_importer/models/product_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_nature_importer/models/product_template.py b/data_nature_importer/models/product_template.py index d29041b..0ef3ec3 100644 --- a/data_nature_importer/models/product_template.py +++ b/data_nature_importer/models/product_template.py @@ -14,7 +14,7 @@ class ProductTemplate(models.Model): def action_sync_datanature_information(self): for product in self: - product._sync_dn_information() + product.with_delay()._sync_dn_information() def _get_dn_metadata(self): self.ensure_one()