mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
10 lines
278 B
Python
10 lines
278 B
Python
# Copyright 2018 Alexandre Díaz <dev@redneboa.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import models, fields
|
|
|
|
|
|
class HotelRoom(models.Model):
|
|
_inherit = 'hotel.room'
|
|
|
|
# hcal_sequence = fields.Integer('Calendar Sequence', default=0)
|