mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
17 lines
361 B
Python
17 lines
361 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PmsRoom(models.Model):
|
|
_inherit = "pms.room"
|
|
|
|
housekeeping_state = fields.Selection(
|
|
selection=[
|
|
("dirty", "Dirty"),
|
|
("to_inspect", "To Inspect"),
|
|
("clean", "Clean"),
|
|
],
|
|
string="Housekeeping State",
|
|
required=True,
|
|
default="dirty",
|
|
)
|