forked from Mapan/odoo17e
13 lines
298 B
Python
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)
|