[FIX] autovacuum_message_attachment : fix inheriting_model feature

pull/2901/head
Florian da Costa 2024-04-08 16:08:48 +02:00
parent 5122f1d078
commit 45258f6a4e
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ class IrAttachment(models.Model):
if rule.inheriting_model:
inheriting_model = self.env[rule.inheriting_model]
attachment_link = inheriting_model._inherits.get("ir.attachment")
att_ids = inheriting_model.search(create_date_domain).mapped(
attachment_link + ".ids"
att_ids = (
inheriting_model.search(create_date_domain).mapped(attachment_link).ids
)
domains.append([("id", "in", att_ids)])
if rule.filename_pattern: