-
-
Notifications
You must be signed in to change notification settings - Fork 253
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
[MIG] [17.0] hotel reservation #209
base: 17.0
Are you sure you want to change the base?
Conversation
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: vertical-hotel-14.0/vertical-hotel-14.0-hotel_reservation Translate-URL: https://translation.odoo-community.org/projects/vertical-hotel-14-0/vertical-hotel-14-0-hotel_reservation/
Currently translated at 62.8% (98 of 156 strings) Translation: vertical-hotel-14.0/vertical-hotel-14.0-hotel_reservation Translate-URL: https://translation.odoo-community.org/projects/vertical-hotel-14-0/vertical-hotel-14-0-hotel_reservation/fr/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: vertical-hotel-15.0/vertical-hotel-15.0-hotel_reservation Translate-URL: https://translation.odoo-community.org/projects/vertical-hotel-15-0/vertical-hotel-15-0-hotel_reservation/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: vertical-hotel-15.0/vertical-hotel-15.0-hotel_reservation Translate-URL: https://translation.odoo-community.org/projects/vertical-hotel-15-0/vertical-hotel-15-0-hotel_reservation/
hotel_reservation/__manifest__.py
Outdated
{ | ||
"name": "Hotel Reservation Management", | ||
"version": "17.0.1.0.0", | ||
"author": "Odoo Community Association (OCA), Serpent Consulting \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"author": "Odoo Community Association (OCA), Serpent Consulting \ | |
"author": "Odoo Community Association (OCA), | |
Serpent Consulting Services Pvt. Ltd., | |
Odoo S.A", |
hotel_reservation/__manifest__.py
Outdated
"report/report_view.xml", | ||
"wizards/hotel_reservation_wizard.xml", | ||
], | ||
# "assets": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove commented code if not require
[("reservation_id", "=", folio.reservation_id.id)] | ||
) | ||
if len(reservations) == 1: | ||
for line in folio.reservation_id.reservation_line: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of looping each reservation line, update in batch
example:
if len(reservations) == 1:
update_vals = []
for line in folio.reservation_id.reservation_line:
for room in line.reserve:
update_vals.append({
"room_id": room.id,
"check_in": folio.checkin_date,
"check_out": folio.checkout_date,
"state": "assigned",
"reservation_id": folio.reservation_id.id,
})
if update_vals:
reservations.write(update_vals[0])
reservation_line_obj = self.env["hotel.room.reservation.line"] | ||
for folio in self: | ||
reservations = reservation_line_obj.search( | ||
[("reservation_id", "=", folio.reservation_id.id)] | ||
) | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need of this whitespace change.
Migrated By Raishkhan Pathan
TODO : Need to migrate JS part