1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_mx_edi/models/ir_view.py
2024-12-10 09:04:09 +07:00

13 lines
298 B
Python

# -*- coding: utf-8 -*-
from odoo import fields, models
class IrView(models.Model):
_inherit = 'ir.ui.view'
l10n_mx_edi_addenda_flag = fields.Boolean(
string='Is an addenda?',
help='If True, the view is an addenda for the Mexican EDI invoicing.',
default=False)