[ADD] Hotel Management using Odoo Connector

This commit is contained in:
Pablo
2018-11-07 20:34:37 +01:00
parent 2747846c1b
commit ca3db68e7a
20 changed files with 520 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
# Copyright 2018 Alexandre Díaz <dev@redneboa.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.addons.component.core import Component
class NodeConnectorModelBinder(Component):
_name = 'node.connector.binder'
_inherit = ['base.binder', 'base.node.connector']
_apply_on = [
'node.room.type',
]