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