149 lines
6.2 KiB
Python
149 lines
6.2 KiB
Python
from collections import OrderedDict
|
||
|
||
from django.contrib import admin
|
||
from django.db.models import BooleanField
|
||
from django.urls import reverse
|
||
from django.utils.html import format_html
|
||
|
||
from stages.views.export import OpenXMLExport
|
||
from .forms import CandidateForm
|
||
from .models import (
|
||
Candidate, Interview, GENDER_CHOICES, DIPLOMA_CHOICES, DIPLOMA_STATUS_CHOICES,
|
||
SECTION_CHOICES, OPTION_CHOICES, AES_ACCORDS_CHOICES, RESIDENCE_PERMITS_CHOICES,
|
||
)
|
||
|
||
|
||
def export_candidates(modeladmin, request, queryset):
|
||
"""
|
||
Export all candidates fields.
|
||
"""
|
||
export_fields = OrderedDict([
|
||
(getattr(f, 'verbose_name', f.name), f.name)
|
||
for f in Candidate._meta.get_fields() if f.name not in ('ID', 'interview')
|
||
])
|
||
export_fields['Employeur'] = 'corporation__name'
|
||
export_fields['Employeur_canton'] = 'corporation__district'
|
||
export_fields['FEE/FPP_civilité'] = 'instructor__civility'
|
||
export_fields['FEE/FPP_Nom'] = 'instructor__last_name'
|
||
export_fields['FEE/FPP_Prénom'] = 'instructor__first_name'
|
||
export_fields['FEE/FPP_email'] = 'instructor__email'
|
||
export_fields['Prof. entretien'] = 'interview__teacher_int__abrev'
|
||
export_fields['Correct. examen'] = 'examination_teacher__abrev'
|
||
export_fields['Prof. dossier'] = 'interview__teacher_file__abrev'
|
||
export_fields['Date entretien'] = 'interview__date'
|
||
export_fields['Salle entretien'] = 'interview__room'
|
||
boolean_fields = [f.name for f in Candidate._meta.get_fields() if isinstance(f, BooleanField)]
|
||
choice_fields = {
|
||
'gender': dict(GENDER_CHOICES),
|
||
'section': dict(SECTION_CHOICES),
|
||
'option': dict(OPTION_CHOICES),
|
||
'diploma': dict(DIPLOMA_CHOICES),
|
||
'diploma_status': dict(DIPLOMA_STATUS_CHOICES),
|
||
'aes_accords': dict(AES_ACCORDS_CHOICES),
|
||
'residence_permits': dict(RESIDENCE_PERMITS_CHOICES),
|
||
}
|
||
|
||
export = OpenXMLExport('Exportation')
|
||
export.write_line(export_fields.keys(), bold=True)
|
||
for cand in queryset.values_list(*export_fields.values()):
|
||
values = []
|
||
for value, field_name in zip(cand, export_fields.values()):
|
||
if value != '' and value is not None and field_name in choice_fields:
|
||
value = choice_fields[field_name][value]
|
||
if field_name in boolean_fields:
|
||
value = 'Oui' if value else ''
|
||
values.append(value)
|
||
export.write_line(values)
|
||
return export.get_http_response('candidats_export')
|
||
|
||
export_candidates.short_description = "Exporter les candidats sélectionnés"
|
||
|
||
|
||
class CandidateAdmin(admin.ModelAdmin):
|
||
form = CandidateForm
|
||
list_display = ('last_name', 'first_name', 'section', 'confirm_mail', 'validation_mail', 'convocation_mail',
|
||
'convoc_confirm_receipt_OK')
|
||
list_filter = ('section', 'option', 'session')
|
||
search_fields = ('last_name', 'city')
|
||
autocomplete_fields = ['corporation', 'instructor']
|
||
readonly_fields = (
|
||
'total_result', 'confirmation_date', 'convocation_date', 'candidate_actions'
|
||
)
|
||
actions = [export_candidates]
|
||
fieldsets = (
|
||
(None, {
|
||
'fields': (('first_name', 'last_name', 'gender'),
|
||
('street', 'pcode', 'city', 'district'),
|
||
('mobile', 'email'),
|
||
('birth_date', 'avs', 'handicap'),
|
||
('section', 'option', 'session'),
|
||
('corporation', 'instructor'),
|
||
('deposite_date', 'confirmation_date', 'canceled_file'),
|
||
'comment',
|
||
),
|
||
}),
|
||
("FE", {
|
||
'classes': ('collapse',),
|
||
'fields': (('exemption_ecg', 'integration_second_year', 'validation_sfpo'),),
|
||
}),
|
||
("EDE/EDS", {
|
||
'classes': ('collapse',),
|
||
'fields': (('diploma', 'diploma_detail', 'diploma_status'),
|
||
('registration_form', 'has_photo', 'certificate_of_payement', 'cv', 'police_record', 'reflexive_text',
|
||
'residence_permits', 'aes_accords'),
|
||
('certif_of_400_general', 'work_certificate'),
|
||
('promise', 'contract', 'activity_rate'),
|
||
('inscr_other_school',),
|
||
('interview', 'examination_teacher'),
|
||
('examination_result', 'interview_result', 'file_result', 'total_result'),
|
||
('confirmation_date', 'validation_date', 'convocation_date', 'convoc_confirm_receipt'),
|
||
),
|
||
}),
|
||
(None, {
|
||
'fields': (('candidate_actions',)),
|
||
}),
|
||
)
|
||
|
||
def confirm_mail(self, obj):
|
||
return obj.confirmation_date is not None
|
||
confirm_mail.boolean = True
|
||
confirm_mail.short_description = 'Confirm. inscript.'
|
||
|
||
def validation_mail(self, obj):
|
||
return obj.validation_date is not None
|
||
validation_mail.boolean = True
|
||
validation_mail.short_description = 'Validation prof.'
|
||
|
||
def convocation_mail(self, obj):
|
||
return obj.convocation_date is not None
|
||
convocation_mail.boolean = True
|
||
convocation_mail.short_description = 'Conv. exam.'
|
||
|
||
def convoc_confirm_receipt_OK(self, obj):
|
||
return obj.convoc_confirm_receipt is not None
|
||
convoc_confirm_receipt_OK.boolean = True
|
||
convoc_confirm_receipt_OK.short_description = 'Accusé de récept.'
|
||
|
||
def candidate_actions(self, obj):
|
||
if not obj.pk:
|
||
return ''
|
||
return format_html(
|
||
'<a class="button" href="{}">Confirmation de l’inscription FE + ES</a> '
|
||
'<a class="button" href="{}">Validation enseignants EDE</a> '
|
||
'<a class="button" href="{}">Convocation aux examens EDE/EDS</a> '
|
||
'<a class="button" href="{}">Impression du résumé du dossier EDE</a>',
|
||
reverse('candidate-confirmation', args=[obj.pk]),
|
||
reverse('candidate-validation', args=[obj.pk]),
|
||
reverse('candidate-convocation', args=[obj.pk]),
|
||
reverse('candidate-summary', args=[obj.pk]),
|
||
)
|
||
candidate_actions.short_description = 'Actions pour candidats'
|
||
candidate_actions.allow_tags = True
|
||
|
||
|
||
class InterviewAdmin(admin.ModelAdmin):
|
||
pass
|
||
|
||
|
||
admin.site.register(Candidate, CandidateAdmin)
|
||
admin.site.register(Interview, InterviewAdmin)
|