Browse Source

Fix item availability check

Jocelyn Delande 9 years ago
parent
commit
271e58d433
1 changed files with 2 additions and 2 deletions
  1. 2 2
      hardware_provisioning/models.py

+ 2 - 2
hardware_provisioning/models.py

@@ -62,7 +62,7 @@ class Item(models.Model):
         Returns the status of the Item. If a Loan without an end date exists,
         Returns the status of the Item. If a Loan without an end date exists,
         returns False (else True).
         returns False (else True).
         """
         """
-        if self.loans.filter(loan_date_end__isnull=True).count():
+        if self.loans.running().exists():
             return False
             return False
         return True
         return True
     is_available.boolean = True
     is_available.boolean = True
@@ -74,7 +74,7 @@ class Item(models.Model):
     def give_back(self, storage=None):
     def give_back(self, storage=None):
         self.storage = storage
         self.storage = storage
         self.save()
         self.save()
-        self.loans.filter(loan_date_end=None).update(
+        self.loans.running().update(
             loan_date_end=date.today())
             loan_date_end=date.today())