From df4fdc4ab6a44af7b1212669a53aab3eed58ac96 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Thu, 7 Dec 2017 14:58:31 +0100
Subject: [PATCH] unfinished appointments corresponds only to visit
 appointments

---
 smash/web/tests/view/test_notifications.py | 10 ++++++++++
 smash/web/views/notifications.py           |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/smash/web/tests/view/test_notifications.py b/smash/web/tests/view/test_notifications.py
index 677ce30b..e02b5150 100644
--- a/smash/web/tests/view/test_notifications.py
+++ b/smash/web/tests/view/test_notifications.py
@@ -286,6 +286,16 @@ class NotificationViewTests(LoggedInTestCase):
         notification = get_unfinished_appointments_count(self.user)
         self.assertEquals(original_notification.count + 1, notification.count)
 
+    def test_get_unfinished_appointments_count_for_general_appointments(self):
+        appointment = create_appointment()
+        appointment.visit = None
+        appointment.datetime_when = "2011-01-01"
+        appointment.status = Appointment.APPOINTMENT_STATUS_SCHEDULED
+        appointment.save()
+
+        notification = get_unfinished_appointments_count(self.user)
+        self.assertEquals(0, notification.count)
+
     def test_get_unfinished_appointments_count_2(self):
         original_notification = get_unfinished_appointments_count(self.user)
         subject = create_study_subject()
diff --git a/smash/web/views/notifications.py b/smash/web/views/notifications.py
index 4d251909..2ef58548 100644
--- a/smash/web/views/notifications.py
+++ b/smash/web/views/notifications.py
@@ -235,7 +235,7 @@ def get_unfinished_appointments(user):
         datetime_when__lt=get_today_midnight_date(),
         status=Appointment.APPOINTMENT_STATUS_SCHEDULED,
         location__in=get_filter_locations(user),
-    ).order_by('datetime_when')
+    ).exclude(visit__isnull=True).order_by('datetime_when')
 
 
 def waiting_for_appointment(visit):
-- 
GitLab