oca-ocb-l10n_europe/odoo-bringout-oca-ocb-l10n_it/l10n_it/models/account_move.py
Ernad Husremovic 7721452493 19.0 vanilla
2026-03-09 09:31:28 +01:00

12 lines
442 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class AccountMove(models.Model):
_inherit = 'account.move'
def _message_set_main_attachment_id(self, attachments, force=False, filter_xml=True):
if self.message_main_attachment_id.mimetype == "application/pkcs7-mime":
force = True
super()._message_set_main_attachment_id(attachments, force, filter_xml)