Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

16.0-MIG-hotel_reservation #201

Open
wants to merge 14 commits into
base: 16.0
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
[15.0] [MIG] hotel_reservation
ShwetaSerpentCS authored and nikul-serpentcs committed Sep 30, 2024
commit 72f24c7c81ce3fda6bb8420c66c06621a14acfaf
16 changes: 0 additions & 16 deletions hotel_reservation/LICENSE/LICENSE

This file was deleted.

10 changes: 5 additions & 5 deletions hotel_reservation/README.rst
Original file line number Diff line number Diff line change
@@ -14,13 +14,13 @@ Hotel Reservation Management
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fvertical--hotel-lightgray.png?logo=github
:target: https://github.com/OCA/vertical-hotel/tree/13.0/hotel_reservation
:target: https://github.com/OCA/vertical-hotel/tree/15.0/hotel_reservation
:alt: OCA/vertical-hotel
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/vertical-hotel-13-0/vertical-hotel-13-0-hotel_reservation
:target: https://translation.odoo-community.org/projects/vertical-hotel-15-0/vertical-hotel-15-0-hotel_reservation
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/157/13.0
:target: https://runbot.odoo-community.org/runbot/157/15.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -73,7 +73,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/vertical-hotel/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 <https://github.com/OCA/vertical-hotel/issues/new?body=module:%20hotel_reservation%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/OCA/vertical-hotel/issues/new?body=module:%20hotel_reservation%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

@@ -106,6 +106,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/vertical-hotel <https://github.com/OCA/vertical-hotel/tree/13.0/hotel_reservation>`_ project on GitHub.
This module is part of the `OCA/vertical-hotel <https://github.com/OCA/vertical-hotel/tree/15.0/hotel_reservation>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 1 addition & 1 deletion hotel_reservation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# See LICENSE file for full copyright and licensing details.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import models
from . import wizards
16 changes: 12 additions & 4 deletions hotel_reservation/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# See LICENSE file for full copyright and licensing details.
# Copyright (C) 2022-TODAY Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Hotel Reservation Management",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"author": "Odoo Community Association (OCA), Serpent Consulting \
Services Pvt. Ltd., Odoo S.A.",
"category": "Generic Modules/Hotel Reservation",
@@ -22,10 +23,17 @@
"report/room_max_report_template.xml",
"report/hotel_reservation_report_template.xml",
"report/report_view.xml",
"views/assets.xml",
"wizards/hotel_reservation_wizard.xml",
],
"qweb": ["static/src/xml/hotel_room_summary.xml"],
"assets": {
"web.assets_qweb": [
"hotel_reservation/static/src/xml/hotel_room_summary.xml",
],
"web.assets_backend": [
"hotel_reservation/static/src/css/room_summary.css",
"hotel_reservation/static/src/js/hotel_room_summary.js",
],
},
"external_dependencies": {"python": ["dateutil"]},
"installable": True,
}
Loading