|
@@ -5,6 +5,7 @@ from __future__ import unicode_literals
|
|
|
|
|
|
from django.contrib import admin
|
|
|
from django.contrib.auth import get_user_model
|
|
|
+from django.forms import ModelChoiceField
|
|
|
from django.utils import timezone
|
|
|
|
|
|
from .models import ItemType, Item, Loan, Storage
|
|
@@ -56,7 +57,7 @@ class AvailabilityFilter(admin.SimpleListFilter):
|
|
|
class ItemAdmin(admin.ModelAdmin):
|
|
|
list_display = (
|
|
|
'designation', 'type', 'mac_address', 'serial', 'owner',
|
|
|
- 'buy_date', 'is_available')
|
|
|
+ 'buy_date', 'deployed', 'is_available')
|
|
|
list_filter = (
|
|
|
AvailabilityFilter, 'type__name', 'storage',
|
|
|
'buy_date', OwnerFilter)
|
|
@@ -121,9 +122,15 @@ class BorrowerFilter(admin.SimpleListFilter):
|
|
|
return queryset
|
|
|
|
|
|
|
|
|
+class ItemChoiceField(ModelChoiceField):
|
|
|
+ # On surcharge cette méthode pour afficher mac et n° de série dans le menu
|
|
|
+ # déroulant de sélection d'un objet dans la création d'un prêt.
|
|
|
+ def label_from_instance(self, obj):
|
|
|
+ return obj.designation + ' ' + obj.get_mac_and_serial()
|
|
|
+
|
|
|
@admin.register(Loan)
|
|
|
class LoanAdmin(admin.ModelAdmin):
|
|
|
- list_display = ('item', 'user', 'loan_date', 'loan_date_end')
|
|
|
+ list_display = ('item', 'get_mac_and_serial', 'user', 'loan_date', 'loan_date_end')
|
|
|
list_filter = (StatusFilter, BorrowerFilter, 'item__designation')
|
|
|
search_fields = (
|
|
|
'item__designation',
|
|
@@ -137,6 +144,14 @@ class LoanAdmin(admin.ModelAdmin):
|
|
|
end_loan.short_description = 'Mettre fin au prêt'
|
|
|
|
|
|
|
|
|
+ def formfield_for_foreignkey(self, db_field, request, **kwargs):
|
|
|
+ if db_field.name == 'item':
|
|
|
+ kwargs['queryset'] = Item.objects.all()
|
|
|
+ return ItemChoiceField(**kwargs)
|
|
|
+ else:
|
|
|
+ return super(LoanAdmin, self).formfield_for_foreignkey(db_field, request, **kwargs)
|
|
|
+
|
|
|
+
|
|
|
@admin.register(Storage)
|
|
|
class StorageAdmin(admin.ModelAdmin):
|
|
|
list_display = ('name', 'truncated_notes', 'items_count')
|