diff --git a/pms_api_rest/services/calendar_service.py b/pms_api_rest/services/calendar_service.py index 096d34f70..a9b6fd611 100644 --- a/pms_api_rest/services/calendar_service.py +++ b/pms_api_rest/services/calendar_service.py @@ -26,7 +26,7 @@ class PmsCalendarService(Component): ) def get_calendar(self, calendar_search_param): domain = list() - domain.append(("date", ">=", datetime.fromisoformat(calendar_search_param.date_from))) + domain.append(("date", ">", datetime.fromisoformat(calendar_search_param.date_from))) domain.append(("date", "<=", datetime.fromisoformat(calendar_search_param.date_to))) result_lines = [] PmsCalendarShortInfo = self.env.datamodels["pms.calendar.short.info"]