Odoo18-Base/addons/l10n_es_edi_sii/models/account_move_send.py

11 lines
339 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
from odoo import models
class AccountMoveSend(models.AbstractModel):
_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)