Hotel folio checkin
hotel.reservation
form
tree,form
[('real_checkin','=', datetime.datetime.now().strftime('%Y-%m-%d')),
('state', 'in', ['confirm']),
('reservation_type', 'not in', ['out'])]
Hotel folio checkout
hotel.reservation
form
tree,form
[('real_checkout','=', datetime.datetime.now().strftime('%Y-%m-%d')),
('state', 'in', ['booking']),
('reservation_type', 'not in', ['out'])]
Hotel Calendar
hotel.calendar
form
tree,form