mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
11 lines
235 B
Python
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,
|
|
)
|