|
@@ -6,29 +6,28 @@ from django.contrib.auth.models import User as AuthUser, Group
|
|
|
from django.contrib.auth.admin import UserAdmin as AuthUserAdmin
|
|
|
from django.http import HttpResponseRedirect
|
|
|
|
|
|
-from .forms import AdhesionForm, UserCreationForm
|
|
|
+from .forms import UserCreationForm
|
|
|
from .models import User, Corporation, Adhesion
|
|
|
from accounts.models import Profile
|
|
|
from services.models import Service
|
|
|
from banking.admin import PaymentInline
|
|
|
|
|
|
|
|
|
-class AdhesionInline(GenericTabularInline):
|
|
|
- model = Adhesion
|
|
|
- ct_field = 'adherent_type'
|
|
|
- ct_fk_field = 'adherent_id'
|
|
|
- form = AdhesionForm
|
|
|
- min_num = 1
|
|
|
- max_num = 1
|
|
|
- extra = 0
|
|
|
- show_change_link = True
|
|
|
+### Inlines
|
|
|
+
|
|
|
+class ProfileInline(admin.StackedInline):
|
|
|
+ model = Profile
|
|
|
+
|
|
|
+ def has_add_permission(self, request):
|
|
|
+ return False
|
|
|
|
|
|
def has_delete_permission(self, request, obj=None):
|
|
|
return False
|
|
|
|
|
|
|
|
|
-class ProfileInline(admin.StackedInline):
|
|
|
- model = Profile
|
|
|
+class AdhesionInline(admin.StackedInline):
|
|
|
+ model = Adhesion
|
|
|
+ fields = ('id', 'active', 'notes',)
|
|
|
|
|
|
def has_add_permission(self, request):
|
|
|
return False
|
|
@@ -51,50 +50,79 @@ class ServiceInline(admin.StackedInline):
|
|
|
return False
|
|
|
|
|
|
|
|
|
-class UserIsAdherentFilter(admin.SimpleListFilter):
|
|
|
- title = 'status adhérent'
|
|
|
- parameter_name = 'adherent'
|
|
|
+### Filters
|
|
|
+
|
|
|
+class AdherentTypeFilter(admin.SimpleListFilter):
|
|
|
+ title = 'type d’adhérent'
|
|
|
+ parameter_name = 'type'
|
|
|
|
|
|
def lookups(self, request, model_admin):
|
|
|
return (
|
|
|
- ('1', 'Oui'),
|
|
|
- ('0', 'Non'),
|
|
|
+ ('physique', 'Personne physique'),
|
|
|
+ ('morale', 'Personne morale'),
|
|
|
)
|
|
|
|
|
|
def queryset(self, request, queryset):
|
|
|
- adhesion_list = Adhesion.objects.values_list('adherent_id')
|
|
|
- if self.value() == '0':
|
|
|
- return queryset.exclude(pk__in=adhesion_list)
|
|
|
- if self.value() == '1':
|
|
|
- return queryset.filter(pk__in=adhesion_list)
|
|
|
+ if self.value() == 'physique':
|
|
|
+ return queryset.filter(user__isnull=False)
|
|
|
+ if self.value() == 'morale':
|
|
|
+ return queryset.filter(corporation__isnull=False)
|
|
|
+
|
|
|
+
|
|
|
+### Mixins
|
|
|
+
|
|
|
+class AdtSearchMixin:
|
|
|
+ adhesion_search_field = 'id'
|
|
|
+
|
|
|
+ def get_search_results(self, request, queryset, search_term):
|
|
|
+ queryset, use_distinct = super().get_search_results(request, queryset, search_term)
|
|
|
+ if search_term[:3] == 'ADT':
|
|
|
+ try:
|
|
|
+ adh_id = int(search_term[3:])
|
|
|
+ except ValueError:
|
|
|
+ pass
|
|
|
+ else:
|
|
|
+ queryset |= self.model.objects.filter(**{self.adhesion_search_field: adh_id})
|
|
|
+ return queryset, use_distinct
|
|
|
+
|
|
|
|
|
|
+### ModelAdmin
|
|
|
|
|
|
-class UserAdmin(AuthUserAdmin):
|
|
|
+class UserAdmin(AdtSearchMixin, AuthUserAdmin):
|
|
|
list_display = AuthUserAdmin.list_display + ('get_adhesion_link',)
|
|
|
- list_filter = AuthUserAdmin.list_filter + (UserIsAdherentFilter,)
|
|
|
+ list_select_related = ('profile', 'adhesion',)
|
|
|
+ ordering = ('adhesion__id',)
|
|
|
+ search_fields = AuthUserAdmin.search_fields + ('=adhesion__id', 'adhesion__notes',)
|
|
|
readonly_fields = ('get_adhesion_link',)
|
|
|
+ adhesion_search_field = 'adhesion__id'
|
|
|
|
|
|
- def get_adhesion_link(self, user):
|
|
|
- adhesion = user.adhesion
|
|
|
- if adhesion:
|
|
|
- return adhesion.get_adhesion_link()
|
|
|
- get_adhesion_link.short_description = 'Numéro d’adhérent'
|
|
|
+ def get_adhesion_id(self, user):
|
|
|
+ return user.adhesion
|
|
|
+ get_adhesion_id.short_description = 'Numéro d’adhérent'
|
|
|
+ get_adhesion_id.admin_order_field = 'adhesion__id'
|
|
|
+
|
|
|
+ get_adhesion_link = lambda self, corporation: corporation.adhesion.get_adhesion_link()
|
|
|
+ get_adhesion_link.short_description = Adhesion.get_adhesion_link.short_description
|
|
|
+
|
|
|
+ def get_inline_instances(self, request, obj=None):
|
|
|
+ if obj:
|
|
|
+ inlines = (ProfileInline, AdhesionInline,)
|
|
|
+ else:
|
|
|
+ inlines = ()
|
|
|
+ return [inline(self.model, self.admin_site) for inline in inlines]
|
|
|
|
|
|
def get_form(self, request, obj=None, **kwargs):
|
|
|
if obj:
|
|
|
- if obj.profile.adhesion:
|
|
|
- UserAdmin.inlines = (ProfileInline,)
|
|
|
- else:
|
|
|
- UserAdmin.inlines = (ProfileInline, AdhesionInline,)
|
|
|
return super().get_form(request, obj, **kwargs)
|
|
|
else:
|
|
|
- UserAdmin.inlines = (AdhesionInline,)
|
|
|
return UserCreationForm
|
|
|
|
|
|
def get_fieldsets(self, request, obj=None):
|
|
|
if obj:
|
|
|
fieldsets = (
|
|
|
- AuthUserAdmin.fieldsets[1],
|
|
|
+ (AuthUserAdmin.fieldsets[1][0], {
|
|
|
+ 'fields': ('get_adhesion_link',) + AuthUserAdmin.fieldsets[1][1]['fields'],
|
|
|
+ }),
|
|
|
('Nom d’utilisateur et mot de passe', {
|
|
|
'classes': ('collapse',),
|
|
|
'fields': AuthUserAdmin.fieldsets[0][1]['fields'],
|
|
@@ -108,16 +136,10 @@ class UserAdmin(AuthUserAdmin):
|
|
|
'fields': AuthUserAdmin.fieldsets[3][1]['fields'],
|
|
|
}),
|
|
|
)
|
|
|
- if obj.profile.adhesion:
|
|
|
- fieldsets = (
|
|
|
- (None, {
|
|
|
- 'fields': ('get_adhesion_link',),
|
|
|
- }),
|
|
|
- ) + fieldsets
|
|
|
else:
|
|
|
fieldsets = (
|
|
|
(None, {
|
|
|
- 'fields': ('first_name', 'last_name', 'username',),
|
|
|
+ 'fields': ('first_name', 'last_name', 'username', 'email',),
|
|
|
}),
|
|
|
)
|
|
|
return fieldsets
|
|
@@ -132,52 +154,29 @@ class UserAdmin(AuthUserAdmin):
|
|
|
return obj and not obj.adhesion
|
|
|
|
|
|
|
|
|
-class AdherentTypeFilter(admin.SimpleListFilter):
|
|
|
- title = 'type d’adhérent'
|
|
|
- parameter_name = 'type'
|
|
|
-
|
|
|
- def lookups(self, request, model_admin):
|
|
|
- return (
|
|
|
- ('physique', 'Personne physique'),
|
|
|
- ('morale', 'Personne morale'),
|
|
|
- )
|
|
|
-
|
|
|
- def queryset(self, request, queryset):
|
|
|
- if self.value() == 'physique':
|
|
|
- return queryset.filter(adherent_type__app_label='auth',
|
|
|
- adherent_type__model='user')
|
|
|
- if self.value() == 'morale':
|
|
|
- return queryset.filter(adherent_type__app_label='adhesions',
|
|
|
- adherent_type__model='corporation')
|
|
|
-
|
|
|
+class CorporationAdmin(AdtSearchMixin, admin.ModelAdmin):
|
|
|
+ list_display = ('social_reason', 'get_adhesion_link',)
|
|
|
+ list_select_related = ('adhesion',)
|
|
|
+ ordering = ('adhesion__id',)
|
|
|
+ search_fields = ('social_reason', 'description', 'email', 'phone_number', 'address', 'notes', 'adhesion__id', 'adhesion__notes',)
|
|
|
+ readonly_fields = ('get_adhesion_link',)
|
|
|
+ filter_horizontal = ('members',)
|
|
|
+ adhesion_search_field = 'adhesion__id'
|
|
|
|
|
|
-class AdhesionAdmin(admin.ModelAdmin):
|
|
|
- list_display = ('get_id', 'type', 'get_adherent_link', 'active')
|
|
|
- list_filter = (AdherentTypeFilter, 'active',)
|
|
|
- fields = ('id', 'type', 'get_adherent_link', 'active', 'notes')
|
|
|
- readonly_fields = ('id', 'type', 'get_adherent_link',)
|
|
|
- search_fields = ('=id', 'notes',)
|
|
|
- inlines = (ServiceInline,)#PaymentInline,)
|
|
|
+ def get_adhesion_id(self, corp):
|
|
|
+ return corp.adhesion
|
|
|
+ get_adhesion_id.short_description = 'Numéro d’adhérent'
|
|
|
+ get_adhesion_id.admin_order_field = 'adhesion__id'
|
|
|
|
|
|
- def get_id(self, obj):
|
|
|
- return 'ADT%d' % obj.id
|
|
|
- get_id.short_description = 'Numéro d’adhérent'
|
|
|
+ get_adhesion_link = lambda self, corporation: corporation.adhesion.get_adhesion_link()
|
|
|
+ get_adhesion_link.short_description = Adhesion.get_adhesion_link.short_description
|
|
|
|
|
|
- def get_search_results(self, request, queryset, search_term):
|
|
|
- queryset, use_distinct = super().get_search_results(request, queryset, search_term)
|
|
|
- users = User.objects.filter(
|
|
|
- Q(username__icontains=search_term)
|
|
|
- | Q(first_name__icontains=search_term)
|
|
|
- | Q(last_name__icontains=search_term)
|
|
|
- )
|
|
|
- user_type = ContentType.objects.get_for_model(User)
|
|
|
- queryset |= Adhesion.objects.filter(adherent_type=user_type,
|
|
|
- adherent_id__in=users.values_list('pk'))
|
|
|
- corporations = Corporation.objects.filter(social_reason__icontains=search_term)
|
|
|
- corporation_type = ContentType.objects.get_for_model(Corporation)
|
|
|
- queryset |= Adhesion.objects.filter(adherent_type=corporation_type,
|
|
|
- adherent_id__in=corporations.values_list('pk'))
|
|
|
- return queryset, use_distinct
|
|
|
+ def get_inline_instances(self, request, obj=None):
|
|
|
+ if obj:
|
|
|
+ inlines = (AdhesionInline,)
|
|
|
+ else:
|
|
|
+ inlines = ()
|
|
|
+ return [inline(self.model, self.admin_site) for inline in inlines]
|
|
|
|
|
|
def get_actions(self, request):
|
|
|
actions = super().get_actions(request)
|
|
@@ -185,23 +184,38 @@ class AdhesionAdmin(admin.ModelAdmin):
|
|
|
del actions['delete_selected']
|
|
|
return actions
|
|
|
|
|
|
- def has_add_permission(self, request):
|
|
|
- return False
|
|
|
+ def get_fieldsets(self, request, obj=None):
|
|
|
+ fieldsets = super().get_fieldsets(request, obj)
|
|
|
+ # put adhesion id on top
|
|
|
+ if obj:
|
|
|
+ fields = fieldsets[0][1]['fields']
|
|
|
+ fields.remove('get_adhesion_link')
|
|
|
+ fieldsets = (
|
|
|
+ (None, {
|
|
|
+ 'fields': ['get_adhesion_link'] + fields,
|
|
|
+ }),
|
|
|
+ )
|
|
|
+ return fieldsets
|
|
|
|
|
|
def has_delete_permission(self, request, obj=None):
|
|
|
return False
|
|
|
|
|
|
|
|
|
-class CorporationAdmin(admin.ModelAdmin):
|
|
|
- list_display = ('social_reason', 'get_adhesion_link')
|
|
|
- search_fields = ('social_reason',)
|
|
|
- filter_horizontal = ('members',)
|
|
|
+class AdhesionAdmin(AdtSearchMixin, admin.ModelAdmin):
|
|
|
+ list_display = ('get_id', 'type', 'get_adherent_link',)
|
|
|
+ list_filter = (AdherentTypeFilter, 'active',)
|
|
|
+ list_select_related = ('user', 'user__profile', 'corporation',)
|
|
|
+ fields = ('id', 'type', 'get_adherent_link',)
|
|
|
+ readonly_fields = ('id', 'type', 'get_adherent_link',)
|
|
|
+ search_fields = ('=id', 'notes',) \
|
|
|
+ + tuple(['user__%s' % f for f in UserAdmin.search_fields if '__' not in f]) \
|
|
|
+ + tuple(['corporation__%s' % f for f in CorporationAdmin.search_fields if '__' not in f])
|
|
|
+ inlines = (ServiceInline,)#PaymentInline,)
|
|
|
|
|
|
- def get_adhesion_link(self, corp):
|
|
|
- adhesion = corp.adhesion
|
|
|
- if adhesion:
|
|
|
- return adhesion.get_adhesion_link()
|
|
|
- get_adhesion_link.short_description = 'Numéro d’adhérent'
|
|
|
+ def get_id(self, obj):
|
|
|
+ return 'ADT%d' % obj.id
|
|
|
+ get_id.short_description = 'Numéro d’adhérent'
|
|
|
+ get_id.admin_order_field = 'id'
|
|
|
|
|
|
def get_actions(self, request):
|
|
|
actions = super().get_actions(request)
|
|
@@ -209,30 +223,11 @@ class CorporationAdmin(admin.ModelAdmin):
|
|
|
del actions['delete_selected']
|
|
|
return actions
|
|
|
|
|
|
- def get_readonly_fields(self, request, obj=None):
|
|
|
- readonly_fields = super().get_readonly_fields(request, obj)
|
|
|
- if obj and obj.adhesion:
|
|
|
- readonly_fields += ('get_adhesion_link',)
|
|
|
- return readonly_fields
|
|
|
-
|
|
|
- def get_fieldsets(self, request, obj=None):
|
|
|
- fieldsets = super().get_fieldsets(request, obj)
|
|
|
- # put adhesion_link on top
|
|
|
- if obj and obj.adhesion:
|
|
|
- CorporationAdmin.inlines = ()
|
|
|
- fields = fieldsets[0][1]['fields']
|
|
|
- fields.remove('get_adhesion_link')
|
|
|
- fieldsets = (
|
|
|
- (None, {
|
|
|
- 'fields': ['get_adhesion_link'] + fields,
|
|
|
- }),
|
|
|
- )
|
|
|
- else:
|
|
|
- CorporationAdmin.inlines = (AdhesionInline,)
|
|
|
- return fieldsets
|
|
|
+ def has_add_permission(self, request):
|
|
|
+ return False
|
|
|
|
|
|
def has_delete_permission(self, request, obj=None):
|
|
|
- return obj and not obj.adhesion
|
|
|
+ return False
|
|
|
|
|
|
|
|
|
admin.site.unregister(AuthUser)
|