mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
Merge branch 'multihotel' of https://github.com/hootel/hootel into multihotel
This commit is contained in:
@@ -1,53 +1,21 @@
|
||||
hotel
|
||||
|
||||
This Module is for Providing Hotel management Features.
|
||||
|
||||
You can manage:
|
||||
-Hotel Booking,
|
||||
-Hotel Facilities and Amenities,
|
||||
-RESTURANTS,
|
||||
-Currency Exchange,
|
||||
-REPORTS
|
||||
|
||||
-Different reports are also provided, mainly for hotel.
|
||||
roomdoo :: hotel
|
||||
----------------
|
||||
This Module is for providing the core PMS capabilities.
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
To install this module, you need to:
|
||||
|
||||
install 'product_uos', 'sale_stock', 'point_of_sale', 'report' modules
|
||||
|
||||
Configuration
|
||||
|
||||
To configure this module, you need to:
|
||||
|
||||
have a Hotel management functionality.
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
To use this module, you need to:
|
||||
|
||||
go to apps, then install module to apply this functionality.
|
||||
|
||||
Try me on Runbot
|
||||
Known issues / Roadmap
|
||||
|
||||
...
|
||||
|
||||
Bug Tracker
|
||||
-----------
|
||||
|
||||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback here.
|
||||
|
||||
Credits
|
||||
|
||||
Contributors
|
||||
|
||||
Serpent Consulting Services PVT. LTD. <http://serpentcs.com>
|
||||
|
||||
Maintainer
|
||||
|
||||
Serpent Consulting Services PVT. LTD.
|
||||
|
||||
This module is maintained by the SerpentCS.
|
||||
|
||||
To contribute to this module, please visit https://github.com/JayVora-SerpentCS/hotelmgmt_v8.
|
||||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback here.
|
||||
@@ -1,17 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2018 Alexandre Díaz
|
||||
# Copyright 2019 Darío Lodeiros, Alexandre Díaz, Jose Luis Algara, Pablo Quesada
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
'name': 'Hotel Management',
|
||||
'name': 'roomdoo',
|
||||
'summary': "A property management system focused on medium-sized hotels",
|
||||
'version': '11.0.2.0.0',
|
||||
'author': 'Odoo Community Association (OCA),\
|
||||
Darío Lodeiros,\
|
||||
Jose Luis Algara,\
|
||||
Alexandre Díaz,\
|
||||
Pablo Quesada,',
|
||||
'development_status': 'Beta',
|
||||
'category': 'Generic Modules/Hotel Management',
|
||||
'website': 'https://github.com/hootel/hootel',
|
||||
'author': 'Darío Lodeiros, '
|
||||
'Alexandre Díaz, '
|
||||
'Jose Luis Algara, '
|
||||
'Pablo Quesada ',
|
||||
'license': "AGPL-3",
|
||||
'application': False,
|
||||
'installable': True,
|
||||
'depends': [
|
||||
'base',
|
||||
'sale_stock',
|
||||
@@ -19,56 +22,57 @@
|
||||
'partner_firstname',
|
||||
'account_cancel'
|
||||
],
|
||||
'license': "AGPL-3",
|
||||
'demo': ['demo/hotel_demo.xml'],
|
||||
'data': [
|
||||
'data/hotel_data.xml',
|
||||
'security/hotel_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'wizard/massive_changes.xml',
|
||||
'wizard/split_reservation.xml',
|
||||
'wizard/service_on_day.xml',
|
||||
'data/menus.xml',
|
||||
'views/inherited_account_payment_views.xml',
|
||||
'views/inherited_account_invoice_views.xml',
|
||||
'wizard/massive_price_reservation_days.xml',
|
||||
'wizard/folio_make_invoice_advance_views.xml',
|
||||
'data/hotel_sequence.xml',
|
||||
'views/inherited_res_users_views.xml',
|
||||
'views/hotel_property_views.xml',
|
||||
'views/hotel_floor_views.xml',
|
||||
'views/hotel_folio_views.xml',
|
||||
'views/inherited_res_partner_views.xml',
|
||||
'views/hotel_room_type_views.xml',
|
||||
'views/hotel_room_views.xml',
|
||||
'views/hotel_shared_room_views.xml',
|
||||
'views/hotel_room_type_class_views.xml',
|
||||
'views/general.xml',
|
||||
'views/inherited_product_template_views.xml',
|
||||
'views/inherited_product_pricelist_views.xml',
|
||||
'views/hotel_room_amenities_type_views.xml',
|
||||
'views/hotel_room_amenities_views.xml',
|
||||
'views/hotel_room_type_restriction_views.xml',
|
||||
'views/hotel_room_type_restriction_item_views.xml',
|
||||
'views/hotel_reservation_views.xml',
|
||||
'views/hotel_room_closure_reason_views.xml',
|
||||
'views/hotel_service_views.xml',
|
||||
'views/hotel_service_line_views.xml',
|
||||
'views/hotel_board_service_views.xml',
|
||||
'views/hotel_checkin_partner_views.xml',
|
||||
'views/hotel_board_service_room_type_views.xml',
|
||||
'views/hotel_cancelation_rule_views.xml',
|
||||
'views/inherited_webclient_templates.xml',
|
||||
'data/cron_jobs.xml',
|
||||
'data/email_template_cancel.xml',
|
||||
'data/email_template_reserv.xml',
|
||||
'data/email_template_exit.xml',
|
||||
'wizard/wizard_reservation.xml',
|
||||
'report/hotel_folio_templates.xml',
|
||||
'data/menus.xml',
|
||||
'data/hotel_data.xml',
|
||||
'data/hotel_sequence.xml',
|
||||
'report/hotel_folio.xml'
|
||||
'report/hotel_folio_templates.xml',
|
||||
'security/hotel_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
|
||||
'views/general.xml',
|
||||
'views/hotel_amenity_views.xml',
|
||||
'views/hotel_amenity_type_views.xml',
|
||||
'views/hotel_board_service_views.xml',
|
||||
'views/hotel_board_service_room_type_views.xml',
|
||||
'views/hotel_cancelation_rule_views.xml',
|
||||
'views/hotel_checkin_partner_views.xml',
|
||||
'views/hotel_floor_views.xml',
|
||||
'views/hotel_folio_views.xml',
|
||||
'views/hotel_property_views.xml',
|
||||
'views/hotel_reservation_views.xml',
|
||||
'views/hotel_room_views.xml',
|
||||
'views/hotel_room_closure_reason_views.xml',
|
||||
'views/inherited_account_payment_views.xml',
|
||||
'views/inherited_account_invoice_views.xml',
|
||||
'views/inherited_res_users_views.xml',
|
||||
'views/hotel_room_type_views.xml',
|
||||
'views/hotel_room_type_class_views.xml',
|
||||
'views/hotel_room_type_restriction_views.xml',
|
||||
'views/hotel_room_type_restriction_item_views.xml',
|
||||
'views/hotel_service_views.xml',
|
||||
'views/hotel_service_line_views.xml',
|
||||
'views/hotel_shared_room_views.xml',
|
||||
'views/inherited_res_partner_views.xml',
|
||||
'views/inherited_product_pricelist_views.xml',
|
||||
'views/inherited_product_template_views.xml',
|
||||
'views/inherited_webclient_templates.xml',
|
||||
'wizard/folio_make_invoice_advance_views.xml',
|
||||
'wizard/massive_changes.xml',
|
||||
'wizard/massive_price_reservation_days.xml',
|
||||
'wizard/service_on_day.xml',
|
||||
'wizard/split_reservation.xml',
|
||||
'wizard/wizard_reservation.xml',
|
||||
],
|
||||
'demo': [
|
||||
'demo/hotel_demo.xml'
|
||||
],
|
||||
'qweb': [
|
||||
'static/src/xml/*.xml',
|
||||
],
|
||||
'installable': True
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user