# -*- coding: utf-8 -*- # Copyright 2021 Joan MarĂ­n # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import fields, models, _ class AccountMove(models.Model): _inherit = "account.move" invoice_type_code = fields.Selection(selection_add=[('02', _('E-invoice of sale - exportation'))])