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