We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86318ff + 595cc35 commit efca495Copy full SHA for efca495
1 file changed
assets/js/pages/booking.js
@@ -874,6 +874,15 @@ App.Pages.Booking = (function () {
874
App.Utils.UI.setDateTimePickerValue($selectDate, startMoment.toDate());
875
App.Http.Booking.getAvailableHours(startMoment.format('YYYY-MM-DD'));
876
877
+ // Update unavailable dates while in manage mode
878
+
879
+ App.Http.Booking.getUnavailableDates(
880
+ appointment.id_users_provider,
881
+ appointment.id_services,
882
+ startMoment.format('YYYY-MM-DD')
883
+ );
884
885
886
// Apply Customer's Data
887
$lastName.val(customer.last_name);
888
$firstName.val(customer.first_name);
0 commit comments