mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
14 lines
417 B
Python
14 lines
417 B
Python
# Copyright 2019 Jose Luis Algara (Alda hotels) <osotranquilo@gmail.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Inherit_res_company(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
id_hotel = fields.Integer(
|
|
'Unique ID for DataBI', default=0,
|
|
help='It must be unique to be able to identify the hotel, \
|
|
within a hotel group.')
|