Odoo18-Base/addons/l10n_mu_account/models/account_move.py

13 lines
360 B
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
from odoo import models
class AccountMove(models.Model):
_inherit = 'account.move'
def _get_name_invoice_report(self):
# EXTENDS account
self.ensure_one()
if self.company_id.account_fiscal_country_id.code == 'MU':
return 'l10n_mu_account.report_invoice_document'
return super()._get_name_invoice_report()