Odoo18-Base/addons/l10n_es_edi_sii/models/account_move_send.py
2025-03-10 10:52:11 +07:00

11 lines
340 B
Python

from odoo import models
class AccountMoveSend(models.TransientModel):
_inherit = 'account.move.send'
def _get_mail_attachment_from_doc(self, doc):
if doc.name == 'jsondump.json' and doc.edi_format_id.code == 'es_sii':
return self.env['ir.attachment']
return super()._get_mail_attachment_from_doc(doc)