Hoteliers control panel is complete for the sections I have already added in admin area. The hoteliers control panel is fully compatible to mobile devices (responsive design + special HTML layout).I currently work on managing reservations in admin area (same functionality will be added in hoteliers control panel). Reservations in IOSR 4.x can be from the site IOSR runs but also from external providers (like expedia, agoda, etc...). A new feature I am working on right now: Save a reservation receipt in PDF format (for admins, hoteliers and guests).In the first screenshot I attach you can see IOS Reservations 4.0 administration frontpage with the Hotels 1.0 extension loaded.Note: IOSR 4 can have multiple extensions for booking different things. These extensions can be enabled individually on each Elxis multi-site. Most probably the IOSR license will be for unlimited multi-sites.In the second screenshot you can see the hoteliers control panel as seen from a mobile device (you see the hotels listing page).
Most of the IOSR 3.x data can be moved to IOSR 4.x as the database tables are quite similar. In some cases these data requires modifications before they are imported. A php script specially built for this purpose can do this job automatically and with errors free.Z dateSomething important that needs conversion before the transfer is the check-in/check-out dates.In IOSR 3.x are in this format: YYYY-MM-DD (Year-Month-Day) while on IOSR 4.x in this format: YYYYZZZ (Year-Z date).zdate (a personally designed date format) is the increment day of a year starting from 0 (January 1) and ending to 364 or 365 (December 31). zdate is only for internal processing and data store. It was chosen as it represents a 7 digits integer which is faster in processing date comparisons, in comparison to the standard Y-M-D format. A sample zdate is "2013063" (March 5, 2013)Fast date comparisons with zdateCheck-in date: February 26, 2013Check-out date: March 5, 2013Stay duration calculation in IOSR 3.x with standard date format: We must calculate the difference of 2013-03-05 minus 2013-02-26 which is not something easy.Stay duration calculation in IOSR 4.x with zdates: 2013063 - 2013056 = 7 days (ultra fast calculation)
Child age is just a text in language files. You can modify the language string and change the default "2-12" to anything you want.