| This
is a
kind reminder to do
end of day process
to the
following bookings
|
|
Check In Bookings
|
|
Check Out
Bookings
|
|
Add Payment Details
| Booking
Ref |
Booking
Type |
Payment
Status |
User
Account |
{% for
single_payment
in
data.payment_status_today
%}
|
{{single_payment.booking_ref_code}} |
{{single_payment.booking_type}} |
{{single_payment.booking_payment_status}} |
{{single_payment.customer_code}} |
{% endfor %}
|
|
Over stayed
Bookings (Period: Last seven days)
| Booking
Ref |
Booking
Type |
Check In Date |
Check Out Date |
Status |
{% for
single_overstay
in
data.overstays
%}
|
{{single_overstay.booking_ref_code}} |
{{single_overstay.booking_type_name}} |
{{single_overstay.booking_check_in_date}} |
{{single_overstay.booking_check_out_date}} |
{{single_overstay.status}} |
{% endfor %}
|
|
Bookings not signed (Period: The last 7 days)
| Booking
Ref |
Booking
Type |
Check In Date |
{% for
single_no_cui
in
data.no_cui
%}
|
{{single_no_cui.booking_ref_code}} |
{{single_no_cui.booking_type_name}} |
{{single_no_cui.actual_booking_check_in_date}} |
{% endfor %}
|
|
Paid but not checked in
bookings (Period: Last seven days)
| Booking
Ref |
Booking
Type |
Check In Date |
{% for
single_not_checked_in
in
data.not_checked_in
%}
|
{{single_not_checked_in.booking_ref_code}} |
{{single_not_checked_in.booking_type_name}} |
{{single_not_checked_in.actual_booking_check_in_date}} |
{% endfor %}
|
Thank you
from OBTS!