Files
pms/pms_l10n_es/models/pms_room.py

11 lines
235 B
Python

from odoo import fields, models
class PmsRoom(models.Model):
_inherit = "pms.room"
in_ine = fields.Boolean(
string="In INE",
help="Take it into account to generate INE statistics",
default=True,
)