forked from Qloapps/QloApps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
1043 lines (848 loc) · 61.8 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
####################################
# V1.6.0
####################################
- Added Features:
- #538: Added Feature service products
- #516: Added "Channel Manager Connector" module to QloApps
- #643: Add module Dashboard Insights to admin dashboard
- #475: Added occupancy wise search and occupancy wise booking
- #449: Added Modules catalog page
- #370: Added PayPal Payment in QloApps
- #370: Added Autoupgrade addon: Upgrade QloApps to latest available version
- #463: Add 'Operations Today' section on admin dashboard
- #435: Minimum and Maximum Length of stay restriction for room types
- #449: Added smart addons recomendation section
- #531: Admin can upload check-in documents
- #456: Admin can add or remove new links on Hotel Reservation System > Settings page
- #343: Employee can access the site in maintenance mode
- #459: Security update: Allow admin to configure the SameSite cookie attribute
- #589: Added cancellation policy section on admin order view page
- #479: Added preparation time for bookings
- #454: Customer can now create booking for someone else.
- #593: Guest transformation to customer during registration at front office
- #490: Added "Hotel Availability and Rates search API" to QloApps
- #375: QloApps can now be installed without demo data
- Back Office:
- Improvements:
- #351: Add hotel address selection on map using marker at back office
- #449: updated dashboard
- #337: Removed delivery column and added full name to customer column on order list page at back office
- #345: Add room type duplication feature
- #346: Remove unused room status from room type edit page
- #347: Improve back office logos
- #354: Remove Google Maps api from order detail page at back office
- #355: Added upper limit of PHP for QloApps installation
- #357: Remove module config links from Hotel Reservation System > Settings page
- #376: Remove global price option when not needed from additional facilities…
- #380: Add error messages for missing tests on Configuration Information page
- #383: Remove Catalog > Tags page and Tags field from room type edit page
- #388: Removed unused field minimum quantity from Specific price
- #395: Load KPIs data using ajax on page load at back office
- #405: "BO: Fix datepicker issues, calendar improvement and update admin theme sass files
- #409: Change Feature Price name to Advanced Price Rule
- #423: Improvement: Booking carts controller in Back-office
- #451: Improve statistics at back office
- #453: Remove Booking Information tab from room type edit page at back office
- #453: Remove Booking Information tab from room type edit page at back office
- #464: Implement Additional Facilities tab in AdminProductsController instead of using hotelreservationsystem module hook
- #471: Move filter options to Preferences > Room Types page
- #478: Update admin book now page design | added fullcalender
- #485: Update default checkout date on order view page at back office
- #509: Added: SQL_MODE for allow invalid dates in db backup
- #515: Optimize: Module suggestion listing process
- #522: Updated: Book now page calender view
- #526: Update refund option and orders state mangement
- #551: Updated best selling rooms and most viewed rooms statistics
- #555: Removed: unused category KPIs
- #563: Change Geolocation data file link at back office
- #571: Remove Order Restrict link from Hotel Reservation System > Settings page
- #580: Updated: removed unused configuration options from admin catagory tab
- #581: "Updated admin service product configuration in SEO, Prices and association tabs
- #582: Removed selected extra services list from current cart in backoffice book now
- #586: Update Dashavailability graph
- #594: Remove unused fields from Catalog Price rule
- #607: Updated: Service products pop-up modal in admin order view page
- #611: Updated: added complete booking info in admin booking carts tab
- #623: Added: access restriction according to hotel in admin search page
- #629: Enable custom handler for backoffice.
- #632: Update disable dates selection for a room at back office
- #633: Update hotel review view page at back office
- #639: Update refund request view page at back office
- #653: Updated: Additional facilities panel in admin room type page
- #655: Updated: compiled admin theme css from sass
- #674: Add label for Length of Stay graph on dashboard
- #678: Removed: "go to payment page" option from admin order create page when creating order for backdate
- #535: Added : autocomplete parameter to date and datetime options in admin render form
- #429: Price modification while new order creation at back office
- #696: Updated: Manage room type default configuration and advance payment form options
- #697: Removed: In the manage category page removed description column from list
- #704: Updated: Data in admin refund request, corrected data in rooms refund detail table.
- Bugs Fixed:
- #314: Resolve HelperList filter issue
- #340: Resolved a fatal error when forwarding a discussion to another employee on the Customer Service page.
- #358: Resolve order total invoice issue on backoffice orders page.
- #359: Resolve 'Revenue' amount issue on admin dashboard
- #360: Resolve specific price list issue on room type edit page
- #361: Correct outgoing search links on search page at back office
- #368: Resolved issue when preview template in backoffice order status page
- #369: Resolved customer thread not forwarding to another employee from backoffice customer service
- #378: Fix ConfigurationKPI values issue when adding a new language
- #379: Fix controller access denied page design
- #382: Resolve undefined index issue on Order Restrict update form
- #389: Prevent Admin or employee from adding rooms in order other than rooms of current hotel in order
- #391: Updated dashboard structure | Fixed dashboard widget
- #396: Fix PHP notice issue when accessing unavailable objects on admin controller
- #407: Fix loading of unnecessary media files on Manage Room Types page
- #408: Fix tpl path issue on Manage Room Types page
- #411: Fix admin login page design issue
- #412: Resolve dashboard design issues
- #413: Fix date formats at back office
- #421: Fix rooms addition to a room type issues at back office
- #428: Fix PHP notice issue for key `stage_name` on order view page at back office
- #434: Fix employee avatar not showing at back office
- #439: Fix module reset options popup issue on Modules & Services page
- #444: Fix undefined variable issue at Hotel Interior Block settings page at back office
- #455: Fix Book Now page at back office
- #461: Fix currency update issue on order creation page at back office
- #466: Resolve issue when total order paid amont is in negative
- #473: Fix database exception issue on Book Now page at back office when multiple QloApps installations are present on the same domain
- #481: Fixes module not installing from new catalog page
- #486: Fix undefined variable issue on admin dashboard
- #495: Added: missing re-allocation pop-up and improved design in book now page
- #496: Fix warning when tab_modules_list is empty
- #502: Fix Division by zero
- #510: escape: unsupported type: UTF-8 - returning unmodified string
- #513: Fixed Undefined property: $toolbar_btn
- #523: Fixed: incorrect payment amount adding from addOrderPaymentDetail
- #525: Fixed: Download module error showing when checking for update on manage module page
- #537: Fix bug in order refund request process at front office
- #540: Fixed: totalAvailableRooms warning issue resolved on room detail page
- #542: Resolved: advance price rules validation issue
- #544: Resolved: bad sql query issue when assigning features to the hotel
- #547: Resolved: Db exception on qlocleaner integrity check
- #549: Resolved: issue on free order and room reallocation
- #554: Resolved: room status update issue from active to inactive.
- #554: Resolved: room status update issue from active to inactive.
- #560: Fix guests count in Operations Today panel of Dashboard
- #564: Fix Stats > Stats page issues
- #565: Fix incorrect value of Purchased References KPI
- #566: Fix Unknown customer age on Stats > Stats page
- #567: Fix Direct Revenue Ratio (DRR) on dashboard
- #568: Fix room add/edit issue on order from back office
- #573: Change catalog evaluation module and fix stats issues
- #574: Fix: Services price not including in cancelation charges.
- #575: Resolved: Issue while adding room in order for deleted customer
- #577: Resolved: Backoffice ajax loader does not stop after closing dashboard recommendation
- #578: Fix Customers KPI on Customers page
- #579: Resolved: Exception on admin book now page after cleaning cart data
- #587: Update guests count in Operations Today on dashboard
- #588: Resolved: Issue while exporting service products and booking carts
- #591: Fix can not create order from Customers > Booking Carts page
- #597: Fix filter issues on Assign Hotel Features page at back office
- #599: Fix js errors on admin book now page
- #602: Fix Add new buttons display issue at back office
- #612: Resolved: hotel tagline and short description wrong format
- #616: Resolved: Mulitple hotel cover image created when uploading multiple images
- #625: Fixed: book now page calender does not show searched date month
- #628: Fixed: Inconsistent price for facilitiy in room row and pop-up modal in admin orders view page
- #640: Fix order room dates edit issue at back office
- #641: Fix ajax error on login page at front office
- #642: Fix: Admin is able to add rooms in order without selecting occupancy
- #647: Fix order creation without address at back office
- #662: Fix: Module update error when uploading zip without db changes
- #666: Fixed: backoffice header toolbar buttons not visible on some pages
- #667: Fix: Syntax issus on admin import page.
- #670: Updated: Admin room type services and facilities panel text issues and undefined index issue
- #671: Fix dashinsights comparison graphs issue
- #675: Fix Average Occupancy Rate issue on dashboard
- #676: Fix 'Best hotels' and 'Best-selling room types' issues on Stats > Stats page
- #681: Fixed: Incorrect price of room when admin adds room in order and room have auto add services
- #694: Resolve: errors while adding new hotel
- #695: Fixed: dashboard graphs errors when data set is empty
- #701: Resolve: Address not updating on admin address and order page.
- Front Office:
- Improvements:
- #336: Remove order history link for guest account holders on order confirmation page
- #367: Updated meta generator tag to QloApps
- #377: Add check-in and check-out time on room type detail page
- #385: Improve front office header
- #387: Add nav bar and move language and currency selector at top at front office
- #400: Updated booking form on room type detail page
- #403: Add maps to search results and room type detail pages
- #410: Add hotel images under room information on room type detail page
- #474: Remove unwanted js and fix room search issues on room type detail page
- #484: Reviews module: Show updated helpful count when marking a review helpful
- #505: Updated tax view in cart popup
- #536: Remove address deletion code from front office
- #545: Added: check in - check out label on room type page
- #548: Updated search result page booking option view
- #550: Updated QloApps search panel design
- #596: Remove refund ID column on refunds list page at front office
- #624: Fix: Dropdown displaces on search result page when adding children in room
- #630: Update navigation menu at front office
- #631: Added: Missing vat number field in customer address form.
- #634: Show room maximum occupancy on search and room type page
- #635: Update: datepicker dates background color for dates between date-from and date-to
- #664: Improved occupancy dropdown on search result page
- #682: Updated: order summary in block cart popup and dropdown
- #687: Add default contact phone and email at front office nav bar
- #698: Fixed: occupancy dropdown input not alligned with adjacent input
- #699: Fix: service product quantity getting updated incorrectly from order OPC page
- #705: Replaced: view voucher and credit slip button with voucher code and id credit slip
- #706: Added: address update success message
- Bugs Fixed:
- #348: Resolve auto page scroll issue on order history page
- #362: Resolve room type name font issue at room type detail page
- #373: Fix wrong search results page url causing SQL error
- #390: Resolve rooms left count issue on cart update on room type detail page
- #397: Fix PHP notice issue on room type detail page
- #414: Fix guest can not edit personal info on checkout page issue
- #417: Resolved address issue on contact page for list and map
- #419: Fix hero image cache issue
- #482: Fix PHP error on passing wrong dates in URL
- #483: Resolved: logo visible bigger than recomended size in default theme
- #504: Fix ajax page not found issue on room type detail page
- #518: Fixed: User input in location field in search panel get replaced by hotel location
- #541: Resolved: hotel image issue on room type page
- #552: Resolved: guest order detail page issue
- #553: Resolved: PHP warnings on the refund request
- #556: Resolved: service product url issue
- #558: Fix order cancel request issue
- #570: Fix maps issue on room type detail page
- #576: Fix cart rule applied icon issue on checkout page
- #598: Fix PHP issue on front pages
- #603: Fix children age selection error with occupancy booking at front office
- #605: Resolved: Service producs all images not visible in front office
- #606: Updated: Hide service product prices in catalog mode.
- #615: Resolved: Order restrict error is displayed multiple time on checkout page
- #617: Resolved: unable to create refund request
- #626: Fixes: Unable to view or save customer address from front office
- #638: Close occupancy dropdown on clicking book now button
- #649: Fix: Occupancy panel does not close when clicking on add to cart button
- #651: Fix: imgaes index not defined for services on room type page in front office
- #652: Fix: Booking form does not get update when occupancy is not provided
- #654: Fix: Booking form refresh when occupancy dropdown is opened
- #663: Fixed: Errors on guest tracking page
- #668: Fixed: Error on search result page when updating invalid occupancy in URL
- #672: Updated: Disable option to add services when rooms are unavailable
- #677: Fix image display issue on homepage
- #679: Resolved: Error on landing page when updating page view count using data mining module
- #680: Fixed: Datepicker not initializing on initial load of room type page with preperation time
- #683: Updated: Fixed chekcout page auto add service breakdown tooltip incorrect content
- #685: Update default number of rooms on room type detail page to 1
- #700: Fix: quantity does not change on room type page booking form
- #703: Resolved: booking details message block issue
- Core
- Improvements
- #372: Add hooks actionSubmitIdentityBefore and displayCartRoomImageAfter
- #418: Add hooks displayAdminAddHotelFormTab and displayAdminAddHotelFormTabContent
- #332: Updated demo link in readme file
- #334: Remove install.sql files from modules
- #338: Replace booking type integer values with class constants
- #353: Remove smarty modifiers json_encode and json_decode | change in deprecation message
- #356: "Moved hotelreservationsystem ""actionvalidateorder"" to core function ""validateorder""
- #364: Remove theme 'default-bootstrap'
- #365: "Update Readme - PHP, MySQL and Required PHP extenstions
- #366: Updated core upgrade files and modules upgrade files
- #371: "Updated tax flow, Taxes are now calculated based on hotel address
- #381: Change demo city name from DefCity to Demo City
- #401: Remove unused modules
- #402: Change module category for modules graphnvd3 and hotelreservationsystem
- #404: Update PaymentModule.php
- #415: Removed qlo_mod_list.xml
- #420: Remove unused code and data from module hotelreservationsystem
- #426: Replace _PS_MODULE_DIR_ with $this->_path in 'wkroomsearchblock' module
- #430: Updated QloApps order statuses
- #432: Updated Language pack resource will be downloaded from QloApps
- #443: Remove Google+ URL from blocksocial module
- #447: Improvement of cart rule applied on orders and room types
- #458: Replace module 'productcomments' with 'qlohotelreview'
- #460: Remove characters limit of 128 for hotel fields 'map_formated_address' and 'map_input_text'
- #467: Removed multiple address option
- #468: Update image generation method for hotel and default modules
- #469: Enable Re-display cart at login by default
- #476: Use object methods save() and delete() for classes HotelCartBookingData and HotelBookingDetail
- #477: Update api endpoint and request data
- #500: Improve order refund flow
- #519: Improved: Enable ssl configuration during installation
- #521: Updated occupancy dropdown
- #527: Fix CLI install issues
- #528: Update licenses
- #532: Change demo content for CMS page Legal Notice
- #657: Allow checkout process classes to be overridden
- #669: Updated: text translations call variable assigned to javascript
- #688: Update CONTRIBUTING.md
- #689: Update SECURITY.md
- #690: Update README.md
- #431: Added gitignore file
- #692: Updated: Recomendation section update and render process
- #342, #363, #436, #462, #470, #480, #543, #546, #561, #562, #569, #595, #618, #644, #658, #673, #686: Text related changes throughout QloApps
- Bugs Fixed
- #329: PHP Version issue in Install of QloApps 1.5.2
- #394: Fix hotel city access method as introduced in tax flow changes
- #416: Resolved wrong address while creating new booking
- #425: Fix owl-carousel plugin loading issue for 'wktestimonialblock' module
- #433: Fix Webservice count() issue
- #438: Fix page scroll issues at order history and order view page
- #448: Resolve multiple hotel room booking from single cart
- #452: Fixed: count() function use issue in WebserviceOutputJSON.php
- #514: Resolve: Occupancy wise search feature issues
- #520: Fix order confirmation email issue
- #534: Fix installation issue of missing data
- #557: Fix js minification issue for file 'js/daterangepicker/moment.min.js'
- #559: Change link in credit slip email
- #583: Resolved: Unable to add room in cart from front and backoffice
- #584: Resolve: Inactive auto add service price still gets added to room price
- #585: Updated: depricated call for array_key_exists to property_exists for object
- #592: Resolved: Incorrect advance payment amount when discount is greater than advance payment
- #604: Resolved: service products can still be added multiple times when configuration is disbled
- #608: Fix: Unable to remove disabled services from cart
- #609: Resolved: Cannot create booking with srevice produsts in cart
- #610: Resolved: price not defined of service product when multiple rooms are bought in order detail page
- #614: Resolved: Specific price does not apply base on priority
- #621: Resolved: Catalog discount is not visible when auto add service is attached to room type
- #627: Fixed: Order summary in order confirmation page and order confirmation e-mail
- #659: Prevent required categories deletion by data cleaner module
- #660: Fix: cover image index not defined while generating invoice
- #665: Fix: Qlocleaner "fix integrity constraint" deletes valid additional facilites
- #684: Fix PHP warning issue in catalog mode
- #645: Added: checkoutProcess directory in override/classes
- #693: Fix: hotel not getting added in hotel profile access table
- #702: Update: Order invoice pdf, changed totals summary details.
- #715: Fix PHP warning on order checkout page at front office
- Web Services:
- Improvement:
- #529: Fixed: API issues in order creation from webservice request
- Bugs Fixed:
- #517: Fixed: Incorrect id_guest in cookie after login
- #452: Fixed: count() function use issue in WebserviceOutputJSON.php
####################################
# V1.5.2
####################################
## Added Features:
- #264: Added SECURITY.md file.
- #313: Update for module upgrade and suggestion
## Improvements:
- core
- #240: Updated TCPDF library
- #242: Changes for PHP7 compatibility
- #243: Removed pclzip library
- #244: Removed pear JSON lib instead use PHP JSON library
- #245: Updated swift mailer
- #246: Updated htmlpurifier
- #247: Updated Smarty library
- #249: Updated Sql Parser Library
- #250: Updated Pear and Archive tar library
- #267: Removed mysql support, pdomysql now required
- #269: Replaced mcrypt with openssl
- #272: Changed default DB prefix to qlo_
- #276: Paypal and PaypalUSA module removed
- #290: Updated path for including css and js in modules | Moved plugins to core js folder
- #299: Added composer.json file
- Front Office:
- #296: Improved Social Sharing module
- #316: Display Room Capacity on room type detail page
- Back Office
- #297: Changed import button icon on Localization page
- #310: Dashboard improvement
- #327: Resolved QloApps dashboard issues
## Bug Fixed:
- core:
- #238: Update date format in invoice according to format provided in language
- #253: Using room status as constants instead in values
- #270: Using room availability status as constants instead in values
- #273: Fixed date format for additional facilities in invoice
- #281: Resolved smarty html comments issue.
- #283: Invalid value inserted in 'special_days' field in htl_room_type_feature_pricing table through API
- #284: Resolved: No validation for the fields in 'hotel_refund_rules' API for add and update.
- #285: Resolved: No validation for the fields in 'hotel_features' API for add and update
- #286: Validations added for 'password' and 'email' fields for the 'employees' API.
- #287: Resolved fatal error while generating class index file
- #288: Resolved: No validation for field 'id_parent in' in 'categories' API.
- #289: Validations added to the fields of "bookings" API for POST / PUT API requests
- #307: Cart and Order API Issues resolved
- #312: Text issues solved
- #321: Fixed QloApps installation issues
- #324: Resolved compatibility issue with php5.6
- Back Office:
- #255: Fixed filter by Due amount results in "Bad SQL query"
- #259: Fixed room reallocation availability list for temporary unavailable rooms
- #256: Fixed Swap rooms leads to reservations duplications
- #251: Removed unused options from images controller
- #271: Fixed syntax issue in admin information cont
- #275: Resolve order total update issue on additional facilities update
- #282: Order refund states 'Refunded' and 'Denied' should not enabled together from render list
- #293: Add profile access restriction when adding room types
- #294: Resolve order edit issues, Added hooks in order edit process
- #303: In 'Manage Hotel' Controller, validation added for 'check-out time must be before check in'
- #304, #315: Text change.
- #318: Resolve multiple rooms addition issue on AdminOrdersController
- #320: Resolved new room features automatically mapping to all the room types
- Front Office:
- #252: Update function getRoomBookingData
- #268: Update blockrss module
- #277: In _DB_PREFIX__orders table column advance_paid_amount value is wrong
- #280: Wrong amount displayed in Order confirmation page in the payment gateways PaymentReturn Hook
- #291: Resolved: Wrong price return by advance payment functions in HotelAdvancedPayment class
- #295: Resolve DNI field issue during guest checkout
- #298, #274: QloApps text changes
- #300: Room amenities name shown with feature icon in room type details page
- #301: Unused CSS file htl-reservation-general.css and its classes are removed
- #302: Resolved: On translating page checking and checkout dates are changed to NaN-NaN-NaN
- #305: Resolve tab design issue on room type detail page
- #317: Resolve jQZoom issue on room type detail page
- #319: Resolved smarty minify HTML issue
####################################
# V1.5.1
####################################
## Added Features:
- Core:
- #208: "Catalog Mode" option added by which user can view room details but not abe to create booking
## Improvements:
- Back Office:
- #206: Removed Other Modules setting from admin Hotel Reservation System -> Settings
- #200: Removed shipping option from car rule condition.
- #199: Removed "Display suppliers and manufacturers" and "Display best sellers" options from Admin Preferences controller
- #193: Removed Payment Modules setting from admin Hotel Reservation System -> Settings
- #189: Moved hotel selection from configuration tab to information tab
- #179: Added hotel column in room type feature pricing list
- #177: Removed multishop option
- #149: Removed carrier column from Booking Carts Controller
- #183: Added hotel name along with room name when adding filter of room type for cart rule
- #204, #196, #182: Text Changes
- #110, #111: Code Optimization
- Core:
- #223: getHotelCartBookingData() : function multiplication optimized
- #225: HotelRoomTypeFeaturePricing.php optimized (Removed unused variables, removed static values assigned)
- #218: Added hotel name column in order confirmation mail and invoice.
- #210: CMS page Delivery is not valid for hotel industry. So changed it to Policies page
- #205: Prevent deleting profile which is used by at least one employee
- #214: blockcart module :: Removed unused hooks displayLeftColumn and displayrightColumn
- #180: license file name changed from LICENSES to LICENSE
- #181: Readme file improvements with more information and links
- #221: dataforfrontsearch() function now calculate and provide "feature_price_diff" value in response
- #175: Changed QloApps versioning system (Ex: X.X.X.X)
- #175: Updated module compatibility check with QloApps version
- #215: "hotelreservationsystem.php" code optimization in hook "actionValidateOrder"
- #117, #118, #119, #120, #121, #122, #134, #137, #138, #139: Changes for PHP7 compatibility
- #178: Text Changes
- #198, #226: Multiple hooks are added in the different QloApps core files
- #217: `auto_generated` column in `address` table added to track address creation source
- #207: New order states 'Partial payment accepted' and 'Awaiting partial payment' added for the partial payment
- Front Office:
- #222: Disabled mobile keyboard pop up when using date-picker in home search
- #208: Room type listing on search result page moved to different template "room_type_listing.tpl"
- #185: Replaced star rating plugin with jquery Raty in Product Comments module
- #156: "product.js" code multiplication optimized
- #215: "ajax-cart.js" add validation
- #125, #127, #141, #142: Changes for PHP7 compatibility
- #187: Display voucher name along with voucher code on order page
## Bug Fixed:
- Back Office:
- #211: Errors on cart rule page when add room type, which is not assigned to hotel, selected in room type condition
- #197: wrong theme information is displayed at Preferences -> Themes admin controller
- #195: Filter by position in the render lists of admin controllers
- #194: Entering wrong discount while Group creation, page redirects to list page
- #192: Using filter in customer Group list, page redirects to previous list
- #189: Room Type associations with its hotel parent category
- #176: Birthday input field width in Helper Form
- #173: Undefined varaible issue Manage Order Refund Request Controller
- #171: Multiple request on single click in Helper List
- #160: "Access Denied" issue when an employee other than super admin create a new room.
- #168: Room number not updating after room reallocation and swap
- #162: Additional facility price changes for room type after saving
- #147: Creating order status without entering "status name", page redirects to blank page
- #148: Creating order refund status without entering "status name", page redirects to list page
- #229: Resolved undefined variable error in Manage Order Refund Request Controller
- Front Office:
- #212: Design issue of select in the ADDITIONAL FACILITIES if text exceeds from block in the product detail page
- #209: Errors on the search result page: If new group is created and only this group is assigned to the customer
- #203: Guest is unable to submit Refund Request again after entering invalid Refund Reason once
- #158: Hotel selection in search panel for mobile devices
- #169: Wrong price displayed when booking from 1 march to 30 march
- #151: Room search check-in && check-out don't change when friendly URL is disabled.
- Core:
- #186: Links in mail for my-account, guest tracking and my orders pages are now localized to customer language.
- #109: updated invalid varaible "pshone_mobile" to "phone_mobile"
- #202: "global.css" added missing class for aligning images left and right in discription
####################################
# V1.5.0
####################################
## Added Features:
[+] CO : QloApps APIs are created (Prestashop APIs are modified as per hotel QloApps changes)
[+] CO : `is_advance_payment` column is added in the 'cart' table.
[+] CO : `is_advance_payment`, `advance_paid_amount` columns are added in the 'orders' table.
[+] CO : `id_transaction`, `payment_mode`, `refunded_amount`, `by_admin` columns are added in the 'order_return' table.
[+] CO : `id_order_return_detail`, `id_htl_booking`, `refunded_amount` columns are added in the 'order_return_detail' table.
[+] CO : `send_email_to_customer`, `send_email_to_superadmin`, `send_email_to_employee`, `send_email_to_hotelier`, denied`, `refunded`, `module_name` columns are added in the 'order_return_state' table.
[+] CO : `customer_template`, `admin_template` columns are added in the 'order_return_state_lang' table.
[+] CO : `id_htl_booking` column is added in the 'order_slip_detail' table.
[+] CO : Refund emails will be sent to the customer as per return state setting
[+] CO : All images link are now generated dynamically
[+] FO : Room type refund policies in the policies tab is shown in the room type details page.
[+] FO : A controller will be there for the customer which will show his refund requests info
[+] BO : Admin can enable/disable refund for the hotel
[+] BO : Refund Process:: Order return statuses improved for order refund statuses.
[+] BO : Admin can select rules for the hotel [checkboxes]
[+] BO : Admin can initiate refund if refund is enable for the system
[+] BO : Admin can select which state is considered as refunded complete in the return state.
[+] BO : Admin can select which state is considered as refunded denied in the return state.
[+] BO : Admin can select whcih email will be sent to customer and admin for the return state.
[+] BO : Feature Price Rule: Groups wise Condition in feature price rules is added.
[+] BO : Global refund policies cms page can be selected from refund rules controller.
[+] BO : Refund can be enabled/disabled globally from refund rules controller.
[+] BO : Payment mode and transaction id can be saved for the refund.
[+] BO : Voucher slip can be generated for refund.
[+] BO : Credit slip can be generated for refund.
[+] BO : Additional facilities can be edited at the time of order editing.
[+] BO : Room type features images are used as jpg images in place of png images.
## Improved/changed features:
[*] BO : Refund Process:: Order return statuses improved for order refund statuses.
[*] BO : In Additional Facilities list no price will be shown if facility have advance options.
[*] BO : Admin will be able to select a checkout date while changing status of the room from order details page.
[*] BO : Hotel category will be selected Default room type category.
[*] BO : In Room type renderlist hotel(instead of category), city, number rooms, adults, Childs columns added.
[*] BO : Merchandise Return tab is removed.
[*] BO : Room type ids now start room type id from 1 in room type render list.
[*] BO : Prestashop warning pop up will nt be shown during module installation for Webkul modules.
[*] BO : Updated addons link from store to addon's page
[*] BO : Added recomended image size for room type images for appropriate view on front end.
[*] FO : Calendar Design is improved of date from and date to in QloApps.
[*] FO : 'Proceed' button during checkout will be disabled in case of errors while checkout.
[*] FO : Search panel is improved on all pages.
[*] FO : Cart warning text changed
[*] FO : Refund request proocess is improved for the customer. Designed is also improved.
[*] CO : paypal adaptive module (by webkul) Removed completely from qloapps
[*] CO : All the irrelevant data creation from the installation process is removed Which is not related to Qloapps but Prestashop. e.g carriers, stores, suppliers, manufacturers...... etc. Order data will not be populated now.
[*] CO : For refund request "order_return" and "order_return_detail" tables are used.
[*] CO : For order refund states "order_return_states" table is used.
## Bug/Issues Resolved:
[-] BO : FIXED : Room does not free even after room status set to checkout.
[-] BO : FIXED : Room does not free while order status is changed to Refunded, Cancelled or Payment Error.
[-] BO : FIXED : Additional facilities price id not managed while deleting a booking from admin order details page.
[-] FO : FIXED: when using advance payment option, discount voucher (amount) get applied to advance payment amount along with total order cost
[-] FO : FIXED : If all rows are disabled then also blocks (Interior, Rooms, Features, Testimonials) are visible on home page.
[-] FO : FIXED : Zip code error while making the guest check.
[-] FO : FIXED : Issue while creating a customer/guest from checkout page on firefox browser.
[-] FO : FIXED : Check-out date same as check-in date when current data is more than max order date for hotel
[-] FO : FIXED : customer able to process booking for inactive rooms
[-] FO : FIXED : Image strech issue on product page.
[-] FO : FIXED : Cart page not update when delete from from cart dropdown
[-] FO : FIXED : While making the guest check out the system shows zip code error in some countries.
[-] CO : FIXED : Fatal error: Uncaught exception 'ImagickException' while creating invoice.
[-] CO : FIXED : warning while creating invoice (total demands variable issue)
####################################
# V1.4.1
####################################
## Added Features:
[+] BO : Hotel wise employee permission management is added. now admin can give permission to his employees according to the specific hotel selections
[+] BO : Additional facility : functionality is added at backoffice order creation process also.
[+] BO : Additional facility : Tax can be applied on additional facilities.
[+] BO : Additional facility : Per day price calculation option is added.[Price will be calculated on per day basis of the booking or for entire date range of the booking]
[+] BO : Order Confirmation Email : Now admin can set to whom order confirmation email will be sent from Preferences -> orders tab.
[+] CO : displayNavigationBottomHook hook added "hotelcommerce/modules/blockuserinfo/nav-xs.tpl".
## Improved/changed features:
[*] FO : Address details on Order details page is changed. Only details (name, email and mobile number) will be shown which we are showing to the customer at checkout page
[*] FO : Address will not be shown to the customer while checkout process. edit link also removed from "Guest Information" section at checkout page.
[*] BO : Option to delete one room in two default created rows in while saving rooms of the room type.
[*] BO : unit price fields removed from backoffice room type creation page.
[*] CO : blocknavigationmenu : Navigaion menu improved. All links are dynamic now.
[*] CO : wkfooterexploreblock module is removed. All functionalities are merged with blocknavigationmenu module.
[*] CO : Orders will be splitted now hotelwise. A new order will be created for each hotel.
[*] CO : Trademark and powered by changed to webkul (from presatshop).
[*] CO : Correct single quotes and double quotes of Class HotelBookingDetail.php
[*] CO : Installed paypal module by prestashop by default while QloApps installation.
[*] CO : Translations are improved.
## Bug/Issues Resolved:
[-] BO : Resolved : Room does not free even after room status set to checkout.
[-] BO : Resolved : Infinite loop on Room type page while loading Booking Information tab.
[-] BO : Resolved : Book now page showing error when current date is last date of the month.
[-] BO : Resolved : Image is not showing while feature update (Catalog->features) and issue while updating feature.
[-] CO : Resolved : As theme name was "hotel-theme". So on saving theme translations a new theme directory "hotel-theme" is created and translations are saved in this directory. now "hotel-theme" is replaced with "hotel-reservation-theme".
[-] CO : Resolved : Feature price plans not working. [ Create two plans one for sunday and other for saturday. At the moment it's only showing the change/increase on Saturdays not Sundays. If I unable Saturdays it is showing the price change on Sundays and not Saturdays.
[-] CO : Resolved : Order status is 'Payment Error' if payment is done by advance payment with real payment gateways.
[-] FO : Resolved : blockcart and blocknavigationmenu modules swaps randomly at displayTop hook.
[-] FO : Resolved : Disable dates of last room will be saved for all previous rooms while saving rooms of a room type.
[-] FO : Resolved : Rooms are not visible when changing minimum price in filter by price.
[-] FO : Resolved : Null quantity issue when check-in date and check-out dates are the same. When the date_from and the date_to passed in the URL parameter are identical they are accepted in the entries (Check-In Date & Check-out Date) on the room type detail page. Once we click on Book now pop up with "Null quantity" message appears.
####################################
# V1.4.0
####################################
## Added Features:
[+] CO : Additional facilities functionality is added.
[+] CO : Almost all updates added to QloApps till the prestashop version 1.6.1.23.
## Improved/changed features:
[*] CO : Tools::generateHtaccess() improved
[*] CO : ($round = true) parameter added in Tools::convertPriceFull()
[*] CO : Localization updated
[*] CO : mails/en/product_download.txt bug resolved
[*] CO : swiftMailer version updated to 5.2.2
[*] CO : translations updated
[*] CO : config/config.inc.php improved (smarty early inclusion)
[*] CO : config/smarty.config.inc.php improved (smartyHook() return improved)
[*] CO : Security: Use Mcrypt’s CBC mode instead of the ECB mode.
[*] CO : Almost all improvements/changes features added to QloApps till the prestashop version 1.6.1.23.
[*] BO : All Stats Module compatible with QloApps
[*] FO : Room type details Page Design improved
## Bug/Issues Resolved:
[-] CO : Almost all bugs resolved in QloApps till the prestashop version 1.6.1.23.
[-] CO : Resolved :: QloApps Compatible with MySQL 5.7
####################################
# V1.3.2
####################################
## Added Features:
[+] CO : pscleaner module is added for cleaning demo data from QloApps.
[+] FO : Option for Guest checkout is given at Preferences->Orders tab. So Guest Checkout is enabled.
[+] FO : Option for Shorter registration/address form is given at Preferences->Customers tab. (In this case address will be created from customer chosen room type's hotel address automatically).
[+] CO : wkfooterexploreblock :: Admin can add custom explore links to show at footer explore block and navigation menu also. table 'htl_custom_explore_link' added with multilang.
## Improved/changed features:
[-] BO : New category option from "quick access" links is removed.
[+] FO : Checkout page design has been changed.
[+] CO : Images validation improved.
## Bug/Issues Resolved:
[-] CO : 56% Installation issue.
[-] BO : Dashboard graphs not loading issues on php 7.2
[-] BO : feature update issue on not selecting image while updating the feature.
[-] BO : Category bug resolve (Should not be created updated deleted from anywhere). Will be handled from hotel creation/updation/deletion.
####################################
# V1.3.1
####################################
## Added Features:
[+] BO : All already compatible Stats module are installed to the qloapps now.
## Improved/changed features:
[+] BO : Hotel name is shown in the Room Type Booking list and Room Type booking status tables.
[+] FO : Hotel name is shown in the Customer shopping list, Order confirmation and order details booking lists.
## Bug/Issues Resolved:
[-] CO : Resolved :: When set up the new install, the upload_max_filesize value in the php.ini file less than 16M, but the error message is displaying for memory_limit.
####################################
# V1.3.0
####################################
## Added Features:
[+] CO : Qloapps is compatible with php 7.x.x .
## Improved/changed features:
[+] CO : "create demo data or not" option improved for Qloapps demo data .
[+] CO : System compatibility check for Qloapps installation improved .
####################################
# V1.2.0
####################################
## Added Features:
[+] CO : Qloapps is now GDPR compatible (changes are made in Qloapps according to Qloapps GDPR module).
[+] CO : wkfooterpaymentblock :: Created a controller where admin will be able to create payment Blocks.
[+] CO : wkfooterpaymentblock :: Admin will be able to enter Name , image and status of the payment block.
[+] CO : wkfooterpaymentblock :: Admin will be able to position the payment blocks and payment image blocks will be shown to the customer as per their positions.
[+] CO : Qloapps version compliancy code added for modules' installation
[+] FO : On contact us page, design is changed.
[+] FO : On contact us page contact header, contact content, global address are now dynamic. Enter values from AdminGeneralSettingsController.
[+] BO : Configuration to show/hide only one active hotel is added in location search panel in Hotel General Settings.
## Improved/changed features:
[+] CO : Missing multilang fields added where needed in Qloapps.
[+] CO : Tax name will be shown in the invoices now. (For GST purposes) - (enable tax breakdown is mandatory)
[+] CO : logo.gif needed in the modules (module author:webkul)
[+] CO : Removed prestashop from all the pages and emails of Qloapps.
[+] CO : Changed all links of Qloapps according to the qloapps.com.
[+] CO : Stopped sending info to prestashop while installation.
[+] BO : Seperate configuration panel is made for location search panel in Hotel General Settings.
## Bug/Issues Resolved:
[-] CO : Resolved :: Theme compilation issue on ajax while Qloapps installation
[-] CO : Resolved :: Notice on Calls to functions Product::getProducts() in wkhoteleoom and Product::getSimpleProducts() in HotelHelper.php while installation of Qloapps.[Trying to get property of non-object]
[-] CO : Resolved :: hotelreservationsystem - Parent:: replaced with parent:: in classes/hotelHotelBranchInformation.php which was creating problems in installation.
[-] CO : Resolved :: RecursiveDirectoryIterator::__construct(/var/www/html/themes/hotel-reservation-theme/): failed to open dir While installation.
[-] BO : Resolved :: hotelreservationsystem:: Hotel images not saved while saving hotel details.
[-] BO : Resolved :: hotelreservationsystem - $max_phone_digit is undefined issue resolved on hotel creation form.
[-] BO : Resolved :: hotelreservationsystem:: HotelBookingDetail.php : phone number sent as string '0987654321'from 0987654321. Giving error while installing Qloapps with php7.0.0 .
[-] BO : Resolved :: wktestimonialblock:: Error while saving or updating testimonials by admin.
[-] BO : Resolved :: array_column is removed from AdminProductController [php version compatibility issue].
[-] FO : Resolved :: Undefined index: total_rooms_in_cart at blockcart.tpl.
####################################
# V1.1.1
####################################
## Added Features:
[+] FO : FrontController.php - Breadcrump code added for front end controllers.
[+] FO : FrontController.php - timepicker/jquery-ui-timepicker-addon.js')) added for timepicker on front end.
[+] FO : FrontController.php - growl plugin added for growl notifications on front end.
[+] FO : global.css - text-danger, text-warning..... color css added.
[+] FO : global.css - Css added for growl notification.
[+] FO : global.css - a:hover, a:focus css added at line no. : 265 Text invisible on hover, focus.
[+] FO : global.css - Css for different Badges added.
[+] FO : global.js - showSuccessMessage(), showErrorMessage(), showNoticeMessage() added for growl Notification in front end.
[+] FO : global.js - showSuccessMessage(), showErrorMessage(), showNoticeMessage() added for growl Notification in front end.
## Improved/changed features:
[+] CO : displayCustomerAccountAfterTabs hook added at my-account.tpl .
[+] CO : actionPackageListGenerateOrder hook added at PaymentModule.php .
[+] CO : changes for the hotel search panel(id_hotel sent in the ajax request) in product.tpl
[+] CO : getAllOrdersByCartId() added Order.php
[+] CO : initContent() changes for seller wise split order feature in OrderConfirmationController.php
[+] CO : changes for seller wise split order feature in Order_confirmation.tpl
[+] CO : Automatic module upgradation is now disabled.
[*] MO : hotelreservationsystem.php : hookActionProductDelete() updated.
[*] MO : hotelreservationsystem.php : hookActionValidateOrder() updated for seller wise split changes.
[*] MO : hotelreservationsystem->HotelBranchInformation.php : update() overrided.
[*] MO : hotelreservationsystem->HotelBranchInformation.php : delete() overrided.
[*] MO : hotelreservationsystem->HotelBranchInformation.php : addCategory() function moved from controllers.
[*] MO : hotelreservationsystem->HotelImage.php : validateImage, validAddHotelOtherImage, uploadOtherImages, uploadMainImage, randomImageName functions removed.
[*] MO : hotelreservationsystem->HotelAdvancedPayment.php : getOrderMinAdvPaymentAmount($id_order) added.
[*] MO : hotelreservationsystem->HotelCustomerAdvancedPayment.php : getClientAdvPaymentDtl() and getOrderTotal changed for make compatible for sellerwise split order.
[*] MO : hotelreservationsystem->HotelImage.php : uploadHotelImages() is added.
[*] MO : hotelreservationsystem->HotelRoomInformation.php : getIdProductByHotelId() is added.
[*] MO : hotelreservationsystem->HotelRoomInformation.php : getHotelCategoryTree() is updated.
[*] MO : hotelreservationsystem->HotelRoomInformation.php : Overrided delete() function and added a new function which will run at the time of delete function execute.
[*] MO : hotelreservationsystem->HotelRoomDisableDates.php : validateDisableDateRange() is added.
[*] MO : hotelreservationsystem->HotelBookingDetails.php : UpdateHotelCartHotelOrderOnOrderEdit() is added changes in getOnlyOrderBookingData()
[*] MO : hotelreservationsystem->HotelCustomerAdvancedPayment.php : updateAdvancePaymentInfoOnOrderEdit() is added.
[*] MO : hotelreservationsystem->HotelRoomInformation.php : commented code is removed.
[*] MO : hotelreservationsystem->HotelRoomTypeFeaturePricing.php :deleteFeaturePriceByIdProduct(), getFeaturePriceInfo() are added.
[*] MO : hotelreservationsystem->HotelBookingDetails.php : getBookingData() ..... $room_type = 0 (default value of room_type added)
[+] CO : hotelreservationsystem::AdminAddHotelController.php - addCategory() is moved at HotelBranchInformation.php and image save changes.
[+] CO : hotelreservationsystem::AdminProductsController.php - ajaxProcessDeleteHotelRoom() changed.
[+] CO : hotelreservationsystem::AdminHotelRoomsBookingController.php - renderView() changes for booking data is null.
[+] CO : hotelreservationsystem::AdminHotelFeaturePricesSettings.php - Below code is removed because impact price can be greater then 100% : if ($priceImpactType == 1) {
if ($impactValue > 100) {
$this->errors[] = $this->l('Invalid value of impact percentage.');
}
}
[+] CO : wkroomsearchblock::autocompletesearch.php - changes for the hotel search panel(id_hotel sent in the ajax request).
[+] CO : bankwire::bankwire.php - hookPaymentReturn() changed (seller wise order split).
[+] CO : cheque::cheque.php - hookPaymentReturn() changed (seller wise order split).
[+] CO : hotelreservationsystem - double codes remove in form.tpl(modules/hotelreservationsystem/views/templates/ admin/ hotel_feature_prices_settings/helpers/form/form.tpl)
[+] CO : hotelreservationsystem::AdminHotelRoomsBookingController: form.tpl - renderView() changes for booking data is null.
[+] CO : hotelreservationsystem::from.tpl :: AdminAddHotelController.php - Changes for tabs (hotel information and images tabs)
[+] CO : hotelreservationsystem::roomSearchWrapper.tpl - changes for the hotel search panel (id_hotel sent in the ajax request)
[+] CO : htlfiltersearchblock::htlfiltersearchblock.tpl - changes for the hotel search panel (id_hotel sent in the ajax request)
[+] CO : hotelreservationsystem::HotelReservationAdmin.css - css added For images save and delete
[+] CO : hotelreservationsystem::HotelReservationAdmin.js - js added For images save and delete changes
[+] CO : hotelreservationsystem::HotelReservationAdmin.js - For booking Calendar and datepicker changes when booking data is null
[+] CO : hotelreservationsystem::roomSearchBlock.js - changes for the hotel search panel (id_hotel sent in the ajax request)
## Bug/Issues Resolved:
[-] BO : Resolved :: submitHandler: function(form) removed at line 257 (admin/themes/default/template/controllers/product/form/form.tpl) o resolve Room Type not always saved while saving fron the backoffice.
[+] CO : wkhotelroom::WkHotelRoomDisplay.php - deleteRoomByIdProduct() function is turned to static becuase at the time of product delete this function is throwing error.
####################################
# V1.1.0
####################################
## Added Features:
[+] Project : `source` column is added in the `order` table to show the source of the booking.
[+] Project : Everywhere now prices are shown according to the feature prices.
[+] Project : Everywhere prestashop logo is replaced with Qloapps logo
[+] BO : Feature price plans functionality has been added.
[+] BO : Funnctionality to disable rooms for many dates is added.
[+] BO : processConfiguration(), initFormConfiguration() are modified and validateDisableDateRanges() is added for disabled dated functionality in AdminProductsController.
[+] BO : AdminOrdersController is modified for feature price funtionality. renderview and renderform functions also modified to display according to feature prices.
[+] FO : OrderConfirmationController, OrderOpcController, OrderDetailsController and ProductControler are modified for feature price functionality. display files of the controllers also modified.
[+] CO : hotelreservationsystem : ChannelManagerServices.php is added.
[+] CO : hotelreservationsystem : ChannelOrderPayment.php is added.
[+] CO : hotelreservationsystem : HotelCustomerAdvancedProductPayment.php is added.
[+] CO : hotelreservationsystem : HotelRoomDisableDates.php is added.
[+] CO : hotelreservationsystem : QloWebservice.php is added.
[+] CO : hotelreservationsystem : WebserviceSpecificManagementQlo.php is added.
[+] CO : hotelreservationsystem : ChannelManagerServices.php is added.
[+] CO : hotelreservationsystem : HotelRoomTypeFeaturePricing.php is added.
[+] CO : hotelreservationsystem : ChannelOrderPayment.php is added.
[+] CO : hotelreservationsystem : getRoomMinAdvPaymentAmount() is added in HotelAdvancedPayment.php.
[+] CO : hotelreservationsystem : createQloAppsBookingByChannels(), createQloCustomerChannelCustomerInfo(), createQloCustomerAddressByChannelCustomerInfo(), createQloCartForBookingFromChannel(), ProcessCreateQloOrderForChannelBooking() are added for Qloapps Api need in HotelBookingDetails.php.
[+] CO : hotelreservationsystem : 'total_price_tax_excl' and 'total_price_tax_incl' columns are added in `htl_booking_detail` table to store the booking time price.
[+] CO : hotelreservationsystem : getProductFeaturePricePlanByDateByPriority(), getHotelCartBookingData() are added in HotelCartBookingData.php.
[+] CO : hotelreservationsystem : 'disabled_dates' column is added in the table `htl_room_information`.
[+] CO : hotelreservationsystem : getRoomTypeAvailableRoomsForDateRange(), getRoomTypeDisabledRoomsForDateRange(), getRoomTypeBookedRoomsForDateRange() are added in HotelRoomInformation.php.
[+] CO : hotelreservationsystem : room status 'Hold For Maintenance is replace with 'Temporary incative';
[+] CO : hotelreservationsystem : AdminHotelRoomsBookingController.php and AdminOrderRefundRequestsController.php are changed to make compatible with feature price functionality.
## Improved/changed features:
[*] MO : wkhotelroom : price of the room types are shown at home page according to feature price plans.
[*] FO : price of the room types are shown at home page according to feature price plans.
## Bug/Issues Resolved:
[-] FO : Resolved :: issue on saving Room type information at admin product information. On saving product sometimes redirecting to renderlist.
[-] FO : Resolved :: If admin left the 'max global date field' to be blank,then invalid dates are shown in check in-checkout fields at frontend.
[-] FO : Resolved :: On submitting the total order cancellation request,Popup with "Parser error text" is shown. (If submit request for single room first and then for all the rooms in the order).
[-] BO : Resolved :: Some validation issues on manage order refund rules page.
[-] BO : Resolved :: Room type column added on manage order refund request -> view page. (#158)
[-] BO : Resolved :: Advance paid amount on "manage order refund request view page" is shown for the single room.(#150)
[-] BO : Resolved :: If admin deleted the room from "order detail page",then errors are shown on the "customer order detail page".(#137)
[-] BO : Resolved :: While reallocating the rooms,sometimes the JSON is getting breakable,due to which no room is shown for swapping & reallocation.(#133)
[-] FO : Resolved :: While placing an order,if customer signed out on "order summary page",then error is shown. (#119)
[-] FO : Resolved :: If filtered with any parameter on category page,then on clicking the 'Book now button',page is redirecting to the category page itself.(#118)
[-] FO : Resolved :: On clicking to the 'add new icon',the page is redirecting to the 'assign features page' rather than 'add new features page'.(#106)
[-] BO : Resolved :: While adding the hotel features,no success message is shown on add new features-> manage hotel features page. (#105)
[-] BO : Resolved :: hotel interior heading and description are not changing on saving new ones.(#87)
[-] BO : Resolved :: PlayPal..Php curl issue on installation. needs curl to be installed on server for istallation (#89)
[-] BO : Resolved :: Many Order Edit issues resolved.
####################################
# V1.0.1
####################################
## Improved/changed features:
[+] Project : Theme has been improved.
[*] FO : After selecting checkIn and checkout dates these dates are highlighted in the datepicker.
[*] FO : contact Number and email were hard coded on contact page now will dinamically come from entered values from Admin General Configuration.
[*] FO : Font-family in order summary page in synced with the theme fonts now.
[*] BO : Bacorder setting option is removed from Settings->General Settings.
## Fixed bugs:
[-] MO : hotelreservationsystem : Fixed Google map issue on contact page.
[-] BO : Fixed showing wrong way of payment on refund request page.
[-] BO : Fixed showing wrong cancellation charges on refund request page.
[-] MO : wkabouthotel : Fixed interior heading and description does not change on changing from Setting->Hotel interior Block Setting.
# Change Log previous version to V1.0.0:
## Added Features:
[+] Project : Theme has been improved.
[+] FO : Order summary page design improved in case of advance payment
[+] BO : Order Edit functionality is added.
[+] BO : Order Restrict functionality is added.
[+] BO : Order Edit id added.
[+] CO : wkpaypaladaptive : Added Feature Admin can refund full transaction.
[+] CO : wkpaypaladaptive : Order is created by IPN.
[+] CO : Added wkhotelroom
[+] CO : Added wkfooteraboutblock
[+] CO : Added wkfooterexploreblock
[+] CO : Added wkfooternotificationblock
[+] CO : Added wkfooterpaymentblock
[+] CO : hotelreservationsystem : Added Settings tab to centralize all configurations.
## Improved/changed features:
[+] Project : Theme has been improved.
[*] FO : Fixed partial amount calculation issues in case of advance payment at order summary page.
[*] FO : Room details page design has been improved.
[*] FO : Room search results page design has been improved.
[*] FO : Home page design has been improved.
[*] FO : Contact page design has been improved.
[*] FO : All pages design has been changed according to new theme.
[*] FO : Theme Footer design has been improved. more modules are added to improve the view.
[*] BO : Quantity tab from Catalog->products removed.
[*] BO : Tab Catalog->Attachments removed.
[*] BO : Tab Cart Rules is improved to make compatible for a hotel reservation system.
[*] BO : Gift product functionality is removed from Cart Rules to make compatible for a hotel reservation system.
[*] BO : Carrier selection functionality is removed from Cart Rules to make compatible for a hotel reservation system.
[*] BO : Compatibility with other cart rules functionality is removed from Cart Rules to make compatible for a hotel reservation system.
[*] BO : Product selection functionality is removed from Cart Rules to make compatible for a hotel reservation system.
[*] BO : Free shipping functionality is removed from Cart Rules to make compatible for a hotel reservation system.
[*] BO : Free shipping functionality is removed from Cart Rules to make compatible for a hotel reservation system.
[*] MO : wkpaypaladaptive : Order is created by IPN.
[*] MO : wkpaypaladaptive : Improved exception handling.
[*] MO : wkpaypaladaptive : Configuration of the module moved to Hotel Reservation System -> Settings Tab.