133 lines
5.4 KiB
Python
133 lines
5.4 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.exports 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['FEE/FPP'] = 'instructor__last_name'
|
|
export_fields['Prof. entretien'] = 'interview__teacher_int__abrev'
|
|
export_fields['Correct. dossier'] = '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 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')
|
|
list_filter = ('section', 'option')
|
|
search_fields = ('last_name', 'city')
|
|
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'),
|
|
('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',
|
|
'marks_certificate', 'residence_permits', 'aes_accords'),
|
|
('certif_of_800_childhood', 'certif_of_800_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'),
|
|
),
|
|
}),
|
|
(None, {
|
|
'fields': (('candidate_actions',)),
|
|
}),
|
|
)
|
|
|
|
def confirm_mail(self, obj):
|
|
return obj.confirmation_date is not None
|
|
confirm_mail.boolean = True
|
|
|
|
def validation_mail(self, obj):
|
|
return obj.validation_date is not None
|
|
validation_mail.boolean = True
|
|
|
|
def convocation_mail(self, obj):
|
|
return obj.convocation_date is not None
|
|
convocation_mail.boolean = True
|
|
|
|
def candidate_actions(self, obj):
|
|
return format_html(
|
|
'<a class="button" href="{}">Confirmation de réception</a> '
|
|
'<a class="button" href="{}">Validation enseignants EDE</a> '
|
|
'<a class="button" href="{}">Convocation aux examens EDE</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)
|