mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
11 lines
372 B
Python
11 lines
372 B
Python
# Copyright 2017 Dario Lodeiros
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import models, fields
|
|
|
|
class RoomClosureReason(models.Model):
|
|
_name = "room.closure.reason"
|
|
_description = "Cause of out of service"
|
|
|
|
name = fields.Char('Name', translate=True, required=True)
|
|
description = fields.Text('Description', translate=True)
|