From d50bee3cef06701c4239d25147bfecf626def4fe Mon Sep 17 00:00:00 2001
From: Carlos Vega <carlos.vega@uni.lu>
Date: Thu, 18 Oct 2018 16:11:30 +0200
Subject: [PATCH] solved problem when adding ranges of availability

---
 smash/web/officeAvailability.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/smash/web/officeAvailability.py b/smash/web/officeAvailability.py
index 297ec421..3a22d1a3 100644
--- a/smash/web/officeAvailability.py
+++ b/smash/web/officeAvailability.py
@@ -3,7 +3,6 @@ import datetime
 from datetime import timedelta
 import logging
 import pandas as pd
-
 from web.utils import get_today_midnight_date
 from web.models.holiday import Holiday
 from web.models.availability import Availability
@@ -59,8 +58,9 @@ class OfficeAvailability(object):
 		Receives a pandas date_range `pd.date_range` object.
 		Sets the availability to one for the specific interval of the provided range.
 		'''
+		range = range.round(self.minimum_slot)
 		if only_working_hours:
-			range = range.to_series().between_time(self.office_start, self.office_end)
+			range = range.to_series().between_time(self.office_start, self.office_end).index
 		self.availability[range] = 1
 
 	def remove_availability(self, range, only_working_hours=False):
@@ -68,8 +68,9 @@ class OfficeAvailability(object):
 		Receives a pandas date_range `pd.date_range` object.
 		Sets the availability to zero for the specific interval of the provided range.
 		'''
+		range = range.round(self.minimum_slot)
 		if only_working_hours:
-			range = range.to_series().between_time(self.office_start, self.office_end)
+			range = range.to_series().between_time(self.office_start, self.office_end).index
 		self.availability[range] = 0
 
 	def consider_this(self, appointment_availability_or_holiday, only_working_hours=False):
-- 
GitLab