yes but i need a module i can put on the page showing future reservations for item XX for next week.
i had a module working on old version where i used
$items = $subjectsModel->loadReservations($ids,$from,$to);
but now, i have been checking into why this doesn't return any items.
i found out in admin/com_booking/models/subjects.php it uses
$query .= ' AND i.rtype = ' . RESERVATION_TYPE_DAILY;
but all my reservations are not type daily, but hourly... so now i need to find out how to make the function
function loadReservations ($objectIds, $from, $to)
work with hourly without core modifikations or how else todo it.