Browse Source

Allow to end a loan from loan admin

Jocelyn Delande 9 years ago
parent
commit
724d1359bc
1 changed files with 8 additions and 0 deletions
  1. 8 0
      hardware_provisioning/admin.py

+ 8 - 0
hardware_provisioning/admin.py

@@ -1,6 +1,9 @@
 # -*- coding: utf-8 -*-
 # -*- coding: utf-8 -*-
 
 
 from __future__ import unicode_literals
 from __future__ import unicode_literals
+
+from datetime import date
+
 from django.contrib import admin
 from django.contrib import admin
 from .models import ItemType, Item, Loan
 from .models import ItemType, Item, Loan
 
 
@@ -26,4 +29,9 @@ class LoanAdmin(admin.ModelAdmin):
     list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
     list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
     list_filter = ('item__designation', 'user__username')
     list_filter = ('item__designation', 'user__username')
     search_fields = ('item', 'user')
     search_fields = ('item', 'user')
+    actions = ['end_loan']
 
 
+    def end_loan(self, request, queryset):
+        queryset.filter(loan_date_end=None).update(
+            loan_date_end=date.today())
+    end_loan.short_description = 'Mettre fin au prêt'