Commit | Line | Data |
---|---|---|
6e7c919b NC |
1 | # -*- encoding: utf-8 -*- |
2 | ||
8d3e2fff PP |
3 | from collections import defaultdict |
4 | import datetime | |
5 | ||
babf71ec | 6 | from django.db import models |
6e7c919b | 7 | from django.contrib import admin |
49449367 | 8 | from django.conf import settings |
aff1a4c6 | 9 | from django.db.models import Q |
d6985a3a | 10 | from auf.django.metadata.admin import AUFMetadataAdminMixin, AUFMetadataInlineAdminMixin, AUF_METADATA_READONLY_FIELDS |
babf71ec | 11 | from project.rh import models as rh |
84cbb4c5 | 12 | from forms import DossierForm, ContratForm |
aff1a4c6 PP |
13 | from dae.utils import get_employe_from_user |
14 | ||
15 | ||
6318ebea PP |
16 | # Override of the InlineModelAdmin to support the link in the tabular inline |
17 | class LinkedInline(admin.options.InlineModelAdmin): | |
18 | template = "admin/linked.html" | |
19 | admin_model_path = None | |
20 | ||
21 | def __init__(self, *args): | |
22 | super(LinkedInline, self).__init__(*args) | |
23 | if self.admin_model_path is None: | |
24 | self.admin_model_path = self.model.__name__.lower() | |
25 | ||
26 | ||
aff1a4c6 PP |
27 | class ProtectRegionMixin(object): |
28 | ||
29 | def queryset(self, request): | |
30 | qs = super(ProtectRegionMixin, self).queryset(request) | |
31 | ||
32 | if request.user.is_superuser: | |
33 | return qs | |
34 | ||
35 | employe = get_employe_from_user(request.user) | |
36 | ||
37 | q = Q(**{self.model.prefix_implantation: employe.implantation.region}) | |
38 | qs = qs.filter(q).distinct() | |
39 | return qs | |
40 | ||
41 | def has_change_permission(self, request, obj=None): | |
42 | if request.user.is_superuser: | |
43 | return True | |
44 | ||
45 | if obj: | |
46 | employe = get_employe_from_user(request.user) | |
47 | if employe.implantation.region in obj.get_regions(): | |
48 | return True | |
49 | else: | |
50 | return False | |
51 | ||
52 | return True | |
53 | ||
6e7c919b | 54 | |
d6985a3a | 55 | # Inlines |
6e7c919b | 56 | |
d6985a3a OL |
57 | class ReadOnlyInlineMixin(object): |
58 | def get_readonly_fields(self, request, obj=None): | |
59 | return [f.name for f in self.model._meta.fields if f.name not in AUF_METADATA_READONLY_FIELDS] | |
6e7c919b NC |
60 | |
61 | ||
51ab4c2c | 62 | class AyantDroitInline(AUFMetadataInlineAdminMixin, admin.StackedInline): |
babf71ec | 63 | model = models.Model # à remplacer dans admin.py |
51ab4c2c | 64 | extra = 0 |
54d04eed | 65 | |
972f50e4 PP |
66 | fieldsets = ( |
67 | (None, { | |
68 | 'fields': (('nom', 'prenom'), ('nom_affichage', 'genre'), 'nationalite', 'date_naissance', 'lien_parente', ) | |
69 | }), | |
70 | ) | |
71 | ||
d6985a3a OL |
72 | |
73 | class AyantDroitCommentaireInline(AUFMetadataInlineAdminMixin, admin.TabularInline): | |
cf786fb2 | 74 | readonly_fields = ('owner', ) |
babf71ec | 75 | model = models.Model # à remplacer dans admin.py |
cf786fb2 | 76 | extra = 1 |
6e7c919b | 77 | |
54d04eed | 78 | |
d6985a3a | 79 | class ContratInline(AUFMetadataInlineAdminMixin, admin.TabularInline): |
84cbb4c5 | 80 | form = ContratForm |
babf71ec | 81 | model = models.Model # à remplacer dans admin.py |
1f2979b8 | 82 | extra = 1 |
babf71ec NC |
83 | |
84 | ||
6318ebea | 85 | class DossierROInline(ReadOnlyInlineMixin, LinkedInline): |
d6985a3a | 86 | exclude = AUF_METADATA_READONLY_FIELDS |
babf71ec | 87 | model = models.Model # à remplacer dans admin.py |
54773196 | 88 | extra = 0 |
babf71ec | 89 | |
d6985a3a OL |
90 | |
91 | class DossierCommentaireInline(AUFMetadataInlineAdminMixin, admin.TabularInline): | |
1f2979b8 | 92 | readonly_fields = ('owner', ) |
babf71ec | 93 | model = models.Model # à remplacer dans admin.py |
1f2979b8 | 94 | extra = 1 |
babf71ec | 95 | |
d6985a3a | 96 | |
babf71ec NC |
97 | class DossierPieceInline(admin.TabularInline): |
98 | model = models.Model # à remplacer dans admin.py | |
988af3fb | 99 | extra = 4 |
babf71ec NC |
100 | |
101 | ||
102 | class EmployeInline(admin.TabularInline): | |
103 | model = models.Model # à remplacer dans admin.py | |
104 | ||
d6985a3a | 105 | class EmployeCommentaireInline(AUFMetadataInlineAdminMixin, admin.TabularInline): |
cf786fb2 | 106 | readonly_fields = ('owner', ) |
babf71ec | 107 | model = models.Model # à remplacer dans admin.py |
cf786fb2 | 108 | extra = 1 |
babf71ec NC |
109 | |
110 | ||
111 | class EmployePieceInline(admin.TabularInline): | |
112 | model = models.Model # à remplacer dans admin.py | |
988af3fb | 113 | extra = 4 |
babf71ec NC |
114 | |
115 | ||
d6985a3a | 116 | class EvenementInline(AUFMetadataInlineAdminMixin, admin.TabularInline): |
babf71ec | 117 | model = models.Model # à remplacer dans admin.py |
1f2979b8 | 118 | extra = 1 |
babf71ec NC |
119 | |
120 | ||
d6985a3a | 121 | class EvenementRemunerationInline(AUFMetadataInlineAdminMixin, admin.TabularInline): |
babf71ec | 122 | model = models.Model # à remplacer dans admin.py |
1f2979b8 | 123 | extra = 1 |
babf71ec NC |
124 | |
125 | ||
d6985a3a | 126 | class PosteCommentaireInline(AUFMetadataInlineAdminMixin, admin.TabularInline): |
70561dc2 | 127 | readonly_fields = ('owner', ) |
babf71ec | 128 | model = models.Model # à remplacer dans admin.py |
70561dc2 | 129 | extra = 1 |
babf71ec NC |
130 | |
131 | ||
132 | class PosteFinancementInline(admin.TabularInline): | |
133 | model = models.Model # à remplacer dans admin.py | |
134 | ||
135 | ||
136 | class PostePieceInline(admin.TabularInline): | |
137 | model = models.Model # à remplacer dans admin.py | |
138 | ||
139 | ||
d6985a3a | 140 | class RemunerationInline(AUFMetadataInlineAdminMixin, admin.TabularInline): |
babf71ec | 141 | model = models.Model # à remplacer dans admin.py |
1f2979b8 | 142 | extra = 1 |
babf71ec NC |
143 | |
144 | ||
d6985a3a | 145 | class RemunerationROInline(ReadOnlyInlineMixin, RemunerationInline): |
6e7c919b NC |
146 | pass |
147 | ||
54d04eed | 148 | |
26dacccc | 149 | class TypePosteInline(AUFMetadataInlineAdminMixin, admin.TabularInline): |
babf71ec NC |
150 | model = models.Model # à remplacer dans admin.py |
151 | ||
152 | ||
153 | # Admins | |
154 | ||
aff1a4c6 | 155 | class AyantDroitAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin): |
cf786fb2 OL |
156 | """ |
157 | L'ajout d'un nouvel ayantdroit se fait dans l'admin de l'employé. | |
158 | """ | |
387ab827 | 159 | alphabet_filter = 'nom' |
cf786fb2 | 160 | search_fields = ('nom', 'prenom', 'employe__nom', 'employe__prenom', ) |
1a89b1f3 | 161 | list_display = ('_employe', 'lien_parente', '_ayantdroit', ) |
babf71ec | 162 | inlines = (AyantDroitCommentaireInline,) |
d6985a3a OL |
163 | readonly_fields = AUFMetadataAdminMixin.readonly_fields + ('employe',) |
164 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
cf786fb2 | 165 | ("Lien avec l'employé", { |
76e26dfc | 166 | 'fields': (('employe', 'lien_parente'), ) |
cf786fb2 OL |
167 | }), |
168 | ||
169 | ('Identification', { | |
76e26dfc | 170 | 'fields': (('nom', 'prenom'), ('nom_affichage', 'genre'), 'nationalite', 'date_naissance', ) |
cf786fb2 OL |
171 | }), |
172 | ) | |
173 | ||
174 | def save_formset(self, request, form, formset, change): | |
175 | instances = formset.save(commit=False) | |
176 | for instance in instances: | |
177 | if instance.__class__ == rh.AyantDroitCommentaire: | |
178 | instance.owner = request.user | |
179 | instance.save() | |
cf786fb2 OL |
180 | |
181 | def _ayantdroit(self, obj): | |
182 | return unicode(obj) | |
183 | _ayantdroit.short_description = u'Ayant droit' | |
babf71ec | 184 | |
cf786fb2 OL |
185 | def _employe(self, obj): |
186 | return unicode(obj.employe) | |
187 | _employe.short_description = u'Employé' | |
188 | ||
189 | def has_add_permission(self, request): | |
190 | return False | |
babf71ec NC |
191 | |
192 | class AyantDroitCommentaireAdmin(admin.ModelAdmin): | |
6e7c919b NC |
193 | pass |
194 | ||
54d04eed | 195 | |
324bf312 OL |
196 | class ClassementAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
197 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
198 | (None, { | |
199 | 'fields': ('type', 'echelon', 'degre', 'coefficient', ) | |
200 | }), | |
201 | ) | |
202 | ||
6e7c919b | 203 | |
6e7c919b NC |
204 | class CommentaireAdmin(admin.ModelAdmin): |
205 | pass | |
206 | ||
207 | ||
84cbb4c5 OL |
208 | #class ContratAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
209 | # form = ContratForm | |
210 | # alphabet_filter = 'dossier__employe__nom' | |
211 | # search_fields = ('dossier__employe__nom', 'dossier__employe__prenom', 'dossier__poste__nom', 'dossier__poste__nom_feminin', ) | |
212 | # list_display = ('id', '_employe', '_poste', 'date_debut', 'date_fin', '_implantation', ) | |
213 | # fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
214 | # (None, { | |
215 | # 'fields': ('dossier', 'type_contrat', 'date_debut', 'date_fin', ) | |
216 | # }), | |
217 | # ) | |
218 | # | |
219 | # def lookup_allowed(self, key, value): | |
220 | # if key in ('dossier__employe__nom__istartswith', ): | |
221 | # return True | |
222 | # | |
223 | # def _employe(self, obj): | |
224 | # return unicode(obj.dossier.employe) | |
225 | # _employe.short_description = "Employé" | |
226 | # | |
227 | # def _poste(self, obj): | |
228 | # return obj.dossier.poste.nom | |
229 | # _poste.short_description = "Poste" | |
230 | # | |
231 | # def _implantation(self, obj): | |
232 | # return obj.dossier.poste.implantation | |
233 | # _poste.short_description = "Implantation" | |
54d04eed | 234 | |
84fc088b OL |
235 | class DeviseAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
236 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
237 | (None, { | |
238 | 'fields': ('code', 'nom', ), | |
239 | }), | |
240 | ) | |
6e7c919b | 241 | |
54d04eed | 242 | |
aff1a4c6 | 243 | class DossierAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin,): |
84cbb4c5 | 244 | form = DossierForm |
387ab827 | 245 | alphabet_filter = 'employe__nom' |
d8d7985b | 246 | search_fields = ('employe__nom', 'employe__prenom', 'poste__nom', 'poste__nom_feminin') |
55ca522c | 247 | list_display = ('_employe', '_poste', 'date_debut', 'date_fin', 'date_modification', '_actif') |
1f2979b8 | 248 | inlines = (DossierPieceInline, ContratInline, |
cf786fb2 OL |
249 | RemunerationInline, |
250 | #EvenementInline, | |
251 | DossierCommentaireInline, | |
1f2979b8 | 252 | ) |
d6985a3a | 253 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
1f2979b8 OL |
254 | ('Identification', { |
255 | 'fields': ('employe', 'poste', 'statut', 'organisme_bstg',) | |
256 | }), | |
257 | ('Recrutement', { | |
cb962802 | 258 | 'fields': (('remplacement', 'statut_residence'), ) |
1f2979b8 OL |
259 | }), |
260 | ('Rémunération', { | |
cb962802 | 261 | 'fields': ('classement', ('regime_travail', 'regime_travail_nb_heure_semaine'),) |
1f2979b8 OL |
262 | }), |
263 | ('Occupation du Poste par cet Employe', { | |
cb962802 | 264 | 'fields': (('date_debut', 'date_fin'), ) |
1f2979b8 OL |
265 | }), |
266 | ) | |
54d04eed | 267 | |
387ab827 | 268 | def lookup_allowed(self, key, value): |
49449367 | 269 | if key in ('employe__nom__istartswith', 'actif__exact', ): |
387ab827 OL |
270 | return True |
271 | ||
49449367 OL |
272 | def _actif(self, dossier): |
273 | if dossier.employe.actif: | |
274 | html = """<img alt="True" src="%simg/admin/icon-yes.gif">""" | |
275 | else: | |
276 | html = """<img alt="False" src="%simg/admin/icon-no.gif">""" | |
277 | return html % settings.ADMIN_MEDIA_PREFIX | |
278 | _actif.allow_tags = u'Employé actif' | |
279 | _actif.short_description = u'Employé actif' | |
280 | _actif.admin_order_field = 'employe__actif' | |
387ab827 | 281 | |
54d04eed NC |
282 | def _poste(self, dossier): |
283 | return unicode(dossier.poste.nom) | |
284 | _poste.short_description = u'Poste' | |
d9836879 | 285 | _poste.admin_order_field = 'poste__nom' |
54d04eed NC |
286 | |
287 | def _employe(self, dossier): | |
288 | return unicode(dossier.employe) | |
289 | _employe.short_description = u'Employé' | |
d9836879 OL |
290 | _employe.admin_order_field = 'employe__nom' |
291 | ||
1f2979b8 OL |
292 | def save_formset(self, request, form, formset, change): |
293 | instances = formset.save(commit=False) | |
294 | for instance in instances: | |
295 | if instance.__class__ == rh.DossierCommentaire: | |
296 | instance.owner = request.user | |
297 | instance.save() | |
6e7c919b | 298 | |
8d3e2fff PP |
299 | def render_change_form(self, request, context, *args, **kwargs): |
300 | obj = kwargs['obj'] | |
301 | ||
302 | thisyear = datetime.date.today().year | |
303 | thisyearfilter = Q(date_debut__year=thisyear) | Q(date_fin__year=thisyear) | |
304 | ||
305 | remunnow = obj.rh_remuneration_remunerations.filter(thisyearfilter) | |
306 | ||
307 | remun_sum = 0 | |
308 | remun_sum_euro = 0 | |
309 | sums = defaultdict(int) | |
310 | sums_euro = defaultdict(int) | |
311 | for r in remunnow: | |
312 | nature = r.type.nature_remuneration | |
313 | sums[nature] += r.montant | |
314 | sums_euro[nature] += r.montant_euro() | |
315 | remun_sum += r.montant | |
316 | remun_sum_euro += r.montant_euro() | |
317 | ||
318 | remun = {} | |
319 | sums = dict(sums) | |
320 | for n, s in sums.iteritems(): | |
321 | remun[n] = [sums[n], sums_euro[n]] | |
322 | ||
323 | extra = { | |
324 | 'remun': remun, | |
325 | 'remun_sum': remun_sum, | |
326 | 'remun_sum_euro': remun_sum_euro, | |
327 | } | |
328 | ||
329 | context.update(extra) | |
330 | ||
331 | return super(DossierAdmin, self).render_change_form(request, context, *args, **kwargs) | |
332 | ||
333 | ||
6e7c919b NC |
334 | class DossierPieceAdmin(admin.ModelAdmin): |
335 | pass | |
336 | ||
54d04eed | 337 | |
6e7c919b NC |
338 | class DossierCommentaireAdmin(admin.ModelAdmin): |
339 | pass | |
340 | ||
54d04eed | 341 | |
aff1a4c6 | 342 | class EmployeAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin): |
7ffc5aa4 | 343 | alphabet_filter = 'nom' |
49449367 OL |
344 | search_fields = ('id', 'nom', 'prenom', 'nom_affichage', 'actif', ) |
345 | list_filter = ('actif', ) | |
346 | ordering = ('nom', ) | |
347 | actions = ('desactiver', ) | |
54773196 PP |
348 | list_display = ('id', 'nom', 'prenom', 'actif', ) |
349 | list_display_links = ('id', 'nom',) | |
babf71ec NC |
350 | inlines = (AyantDroitInline, |
351 | DossierROInline, | |
352 | EmployePieceInline, | |
353 | EmployeCommentaireInline) | |
d6985a3a | 354 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
cf786fb2 | 355 | ('Identification', { |
e35610f5 | 356 | 'fields': (('nom', 'prenom'), ('nom_affichage', 'genre'), 'nationalite', 'date_naissance', ) |
cf786fb2 OL |
357 | }), |
358 | ('Informations personnelles', { | |
359 | 'fields': ('situation_famille', 'date_entree', ) | |
360 | }), | |
361 | ('Coordonnées', { | |
e35610f5 | 362 | 'fields': (('tel_domicile', 'tel_cellulaire'), ('adresse', 'ville'), ('code_postal', 'province'), 'pays', ) |
cf786fb2 OL |
363 | }), |
364 | ) | |
babf71ec | 365 | |
cf786fb2 OL |
366 | def save_formset(self, request, form, formset, change): |
367 | instances = formset.save(commit=False) | |
368 | for instance in instances: | |
369 | if instance.__class__ == rh.EmployeCommentaire: | |
370 | instance.owner = request.user | |
371 | instance.save() | |
babf71ec NC |
372 | |
373 | class EmployeCommentaireAdmin(admin.ModelAdmin): | |
6e7c919b NC |
374 | pass |
375 | ||
54d04eed | 376 | |
babf71ec | 377 | class EmployePieceAdmin(admin.ModelAdmin): |
6e7c919b NC |
378 | pass |
379 | ||
54d04eed | 380 | |
6e7c919b | 381 | class EvenementAdmin(admin.ModelAdmin): |
babf71ec | 382 | inlines = (EvenementRemunerationInline,) |
6e7c919b | 383 | |
54d04eed | 384 | |
6e7c919b NC |
385 | class EvenementRemunerationAdmin(admin.ModelAdmin): |
386 | pass | |
387 | ||
54d04eed | 388 | |
26dacccc | 389 | class FamilleEmploiAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
babf71ec | 390 | inlines = (TypePosteInline,) |
26dacccc OL |
391 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
392 | (None, { | |
393 | 'fields': ('nom', ) | |
394 | }), | |
395 | ) | |
6e7c919b | 396 | |
54d04eed | 397 | |
aff1a4c6 | 398 | class OrganismeBstgAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin): |
d8d7985b | 399 | search_fields = ('nom', ) |
1c8856ef | 400 | list_display = ('nom', 'type', 'pays', ) |
babf71ec | 401 | inlines = (DossierROInline,) |
43f5653a OL |
402 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
403 | (None, { | |
404 | 'fields': ('nom', 'type', 'pays', ) | |
405 | }), | |
406 | ) | |
6e7c919b | 407 | |
54d04eed | 408 | |
aff1a4c6 | 409 | class PosteAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin): |
387ab827 | 410 | alphabet_filter = 'nom' |
70561dc2 OL |
411 | search_fields = ('nom', 'implantation__code', 'implantation__nom', 'implantation__region__code', 'implantation__region__nom', ) |
412 | list_display = ('nom', 'implantation', 'service', 'type_poste', 'date_debut', 'date_fin', ) | |
d2cf315a | 413 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
6e7c919b | 414 | (None, { |
4497b3cb | 415 | 'fields': (('nom', 'nom_feminin'), 'implantation', 'type_poste', |
6e7c919b NC |
416 | 'service', 'responsable') |
417 | }), | |
418 | ('Contrat', { | |
4497b3cb | 419 | 'fields': (('regime_travail', 'regime_travail_nb_heure_semaine'), ) |
6e7c919b NC |
420 | }), |
421 | ('Recrutement', { | |
4497b3cb | 422 | 'fields': (('local', 'expatrie', 'mise_a_disposition', 'appel'),) |
6e7c919b NC |
423 | }), |
424 | ('Rémunération', { | |
4497b3cb PP |
425 | 'fields': (('classement_min', 'classement_max'), |
426 | ('valeur_point_min', 'valeur_point_max'), | |
427 | ('devise_min', 'devise_max'), | |
428 | ('salaire_min', 'salaire_max'), | |
429 | ('indemn_min', 'indemn_max'), | |
430 | ('autre_min', 'autre_max')) | |
6e7c919b NC |
431 | }), |
432 | ('Comparatifs de rémunération', { | |
4497b3cb PP |
433 | 'fields': ('devise_comparaison', |
434 | ('comp_locale_min', 'comp_locale_max'), | |
435 | ('comp_universite_min', 'comp_universite_max'), | |
436 | ('comp_fonctionpub_min', 'comp_fonctionpub_max'), | |
437 | ('comp_ong_min', 'comp_ong_max'), | |
438 | ('comp_autre_min', 'comp_autre_max')) | |
6e7c919b NC |
439 | }), |
440 | ('Justification', { | |
441 | 'fields': ('justification',) | |
442 | }), | |
443 | ('Autres Metadata', { | |
4497b3cb | 444 | 'fields': ('date_validation', ('date_debut', 'date_fin')) |
6e7c919b NC |
445 | }), |
446 | ) | |
447 | ||
babf71ec NC |
448 | inlines = (PosteFinancementInline, |
449 | PostePieceInline, | |
70561dc2 OL |
450 | DossierROInline, |
451 | PosteCommentaireInline, ) | |
6e7c919b | 452 | |
70561dc2 OL |
453 | def save_formset(self, request, form, formset, change): |
454 | instances = formset.save(commit=False) | |
455 | for instance in instances: | |
456 | if instance.__class__ == rh.PosteCommentaire: | |
457 | instance.owner = request.user | |
458 | instance.save() | |
459 | formset.save_m2m() | |
6e7c919b | 460 | |
aff1a4c6 | 461 | |
6e7c919b NC |
462 | class PosteCommentaireAdmin(admin.ModelAdmin): |
463 | pass | |
464 | ||
6e7c919b | 465 | |
babf71ec | 466 | class PosteFinancementAdmin(admin.ModelAdmin): |
6e7c919b NC |
467 | pass |
468 | ||
6e7c919b | 469 | |
babf71ec | 470 | class PostePieceAdmin(admin.ModelAdmin): |
6e7c919b NC |
471 | pass |
472 | ||
6e7c919b | 473 | |
babf71ec | 474 | class RemunerationAdmin(admin.ModelAdmin): |
6e7c919b NC |
475 | pass |
476 | ||
6e7c919b | 477 | |
1eede0db OL |
478 | class ResponsableImplantationAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
479 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
480 | (None, { | |
481 | 'fields': ('employe', 'implantation', ), | |
482 | }), | |
483 | ) | |
484 | ||
6e7c919b | 485 | |
43f5653a OL |
486 | class ServiceAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
487 | list_display = ('nom', 'actif', ) | |
488 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
489 | (None, { | |
490 | 'fields': ('nom', ), | |
491 | }), | |
492 | ) | |
6e7c919b | 493 | |
43f5653a OL |
494 | class StatutAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
495 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
496 | (None, { | |
497 | 'fields': ('code', 'nom', ), | |
498 | }), | |
499 | ) | |
6e7c919b | 500 | |
babf71ec | 501 | class TauxChangeAdmin(admin.ModelAdmin): |
24475cf1 OL |
502 | list_display = ('taux', 'devise', 'annee', ) |
503 | list_filter = ('devise', ) | |
dcbadfad OL |
504 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
505 | (None, { | |
506 | 'fields': ('taux', 'devise', 'annee', ), | |
507 | }), | |
508 | ) | |
6e7c919b | 509 | |
6e7c919b | 510 | class TypeContratAdmin(admin.ModelAdmin): |
babf71ec | 511 | inlines = (ContratInline,) |
7376afeb PP |
512 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
513 | (None, { | |
514 | 'fields': ('nom', 'nom_long', ), | |
515 | }), | |
516 | ) | |
6e7c919b | 517 | |
6e7c919b | 518 | |
240893cb | 519 | class TypePosteAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
d8d7985b | 520 | search_fields = ('nom', 'nom_feminin', ) |
52e05b08 OL |
521 | list_display = ('nom', 'famille_emploi', ) |
522 | list_filter = ('famille_emploi', ) | |
240893cb OL |
523 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
524 | (None, { | |
525 | 'fields': ('nom', 'nom_feminin', 'is_responsable', 'famille_emploi', ) | |
526 | }), | |
527 | ) | |
6e7c919b | 528 | |
6e7c919b | 529 | |
3f486b41 | 530 | class TypeRemunerationAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
f7efd29a | 531 | list_display = ('nom', 'type_paiement', 'nature_remuneration', ) |
3f486b41 OL |
532 | #inlines = (RemunerationROInline,) utilité? |
533 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
534 | (None, { | |
535 | 'fields': ('nom', 'type_paiement', 'nature_remuneration', ) | |
536 | }), | |
537 | ) | |
6e7c919b | 538 | |
6e7c919b | 539 | |
3f486b41 OL |
540 | class TypeRevalorisationAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
541 | #inlines = (RemunerationROInline,) utilité? | |
542 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
543 | (None, { | |
544 | 'fields': ('nom', ) | |
545 | }), | |
546 | ) | |
6e7c919b | 547 | |
6e7c919b | 548 | |
84fc088b | 549 | class ValeurPointAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
701f3bea | 550 | list_display = ('_devise_code', '_devise_nom', 'annee', 'valeur', ) |
84fc088b OL |
551 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
552 | (None, { | |
553 | 'fields': ('valeur', 'devise', 'implantation', 'annee', ) | |
554 | }), | |
555 | ) | |
701f3bea OL |
556 | |
557 | def _devise_code(self, obj): | |
558 | return obj.devise.code | |
559 | _devise_code.short_description = "Code de la devise" | |
560 | ||
561 | def _devise_nom(self, obj): | |
562 | return obj.devise.nom | |
563 | _devise_nom.short_description = "Nom de la devise" |