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 + ( |
5961a2c9 PP |
254 | (None, { |
255 | 'fields': ('statut', 'organisme_bstg',) | |
1f2979b8 OL |
256 | }), |
257 | ('Recrutement', { | |
7c182958 | 258 | 'fields': ('statut_residence', 'remplacement', 'remplacement_de', ) |
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 | |
7c182958 PP |
268 | class Media: |
269 | js = ('js/dossier.js',) | |
270 | ||
387ab827 | 271 | def lookup_allowed(self, key, value): |
49449367 | 272 | if key in ('employe__nom__istartswith', 'actif__exact', ): |
387ab827 OL |
273 | return True |
274 | ||
49449367 OL |
275 | def _actif(self, dossier): |
276 | if dossier.employe.actif: | |
277 | html = """<img alt="True" src="%simg/admin/icon-yes.gif">""" | |
278 | else: | |
279 | html = """<img alt="False" src="%simg/admin/icon-no.gif">""" | |
280 | return html % settings.ADMIN_MEDIA_PREFIX | |
281 | _actif.allow_tags = u'Employé actif' | |
282 | _actif.short_description = u'Employé actif' | |
283 | _actif.admin_order_field = 'employe__actif' | |
387ab827 | 284 | |
54d04eed NC |
285 | def _poste(self, dossier): |
286 | return unicode(dossier.poste.nom) | |
287 | _poste.short_description = u'Poste' | |
d9836879 | 288 | _poste.admin_order_field = 'poste__nom' |
54d04eed NC |
289 | |
290 | def _employe(self, dossier): | |
291 | return unicode(dossier.employe) | |
292 | _employe.short_description = u'Employé' | |
d9836879 OL |
293 | _employe.admin_order_field = 'employe__nom' |
294 | ||
1f2979b8 OL |
295 | def save_formset(self, request, form, formset, change): |
296 | instances = formset.save(commit=False) | |
297 | for instance in instances: | |
298 | if instance.__class__ == rh.DossierCommentaire: | |
299 | instance.owner = request.user | |
300 | instance.save() | |
6e7c919b | 301 | |
8d3e2fff PP |
302 | def render_change_form(self, request, context, *args, **kwargs): |
303 | obj = kwargs['obj'] | |
304 | ||
305 | thisyear = datetime.date.today().year | |
306 | thisyearfilter = Q(date_debut__year=thisyear) | Q(date_fin__year=thisyear) | |
307 | ||
308 | remunnow = obj.rh_remuneration_remunerations.filter(thisyearfilter) | |
309 | ||
310 | remun_sum = 0 | |
311 | remun_sum_euro = 0 | |
312 | sums = defaultdict(int) | |
313 | sums_euro = defaultdict(int) | |
314 | for r in remunnow: | |
315 | nature = r.type.nature_remuneration | |
316 | sums[nature] += r.montant | |
317 | sums_euro[nature] += r.montant_euro() | |
318 | remun_sum += r.montant | |
319 | remun_sum_euro += r.montant_euro() | |
320 | ||
321 | remun = {} | |
322 | sums = dict(sums) | |
323 | for n, s in sums.iteritems(): | |
324 | remun[n] = [sums[n], sums_euro[n]] | |
325 | ||
326 | extra = { | |
327 | 'remun': remun, | |
328 | 'remun_sum': remun_sum, | |
329 | 'remun_sum_euro': remun_sum_euro, | |
5961a2c9 PP |
330 | 'employe': obj.employe, |
331 | 'poste_nom': obj.poste.nom, | |
332 | 'poste_service': obj.poste.service, | |
333 | 'poste_implantation': obj.poste.implantation, | |
8d3e2fff PP |
334 | } |
335 | ||
336 | context.update(extra) | |
337 | ||
338 | return super(DossierAdmin, self).render_change_form(request, context, *args, **kwargs) | |
339 | ||
340 | ||
6e7c919b NC |
341 | class DossierPieceAdmin(admin.ModelAdmin): |
342 | pass | |
343 | ||
54d04eed | 344 | |
6e7c919b NC |
345 | class DossierCommentaireAdmin(admin.ModelAdmin): |
346 | pass | |
347 | ||
54d04eed | 348 | |
aff1a4c6 | 349 | class EmployeAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin): |
7ffc5aa4 | 350 | alphabet_filter = 'nom' |
49449367 OL |
351 | search_fields = ('id', 'nom', 'prenom', 'nom_affichage', 'actif', ) |
352 | list_filter = ('actif', ) | |
353 | ordering = ('nom', ) | |
354 | actions = ('desactiver', ) | |
54773196 PP |
355 | list_display = ('id', 'nom', 'prenom', 'actif', ) |
356 | list_display_links = ('id', 'nom',) | |
babf71ec NC |
357 | inlines = (AyantDroitInline, |
358 | DossierROInline, | |
359 | EmployePieceInline, | |
360 | EmployeCommentaireInline) | |
d6985a3a | 361 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
cf786fb2 | 362 | ('Identification', { |
e35610f5 | 363 | 'fields': (('nom', 'prenom'), ('nom_affichage', 'genre'), 'nationalite', 'date_naissance', ) |
cf786fb2 OL |
364 | }), |
365 | ('Informations personnelles', { | |
366 | 'fields': ('situation_famille', 'date_entree', ) | |
367 | }), | |
368 | ('Coordonnées', { | |
e35610f5 | 369 | 'fields': (('tel_domicile', 'tel_cellulaire'), ('adresse', 'ville'), ('code_postal', 'province'), 'pays', ) |
cf786fb2 OL |
370 | }), |
371 | ) | |
babf71ec | 372 | |
cf786fb2 OL |
373 | def save_formset(self, request, form, formset, change): |
374 | instances = formset.save(commit=False) | |
375 | for instance in instances: | |
376 | if instance.__class__ == rh.EmployeCommentaire: | |
377 | instance.owner = request.user | |
378 | instance.save() | |
babf71ec NC |
379 | |
380 | class EmployeCommentaireAdmin(admin.ModelAdmin): | |
6e7c919b NC |
381 | pass |
382 | ||
54d04eed | 383 | |
babf71ec | 384 | class EmployePieceAdmin(admin.ModelAdmin): |
6e7c919b NC |
385 | pass |
386 | ||
54d04eed | 387 | |
6e7c919b | 388 | class EvenementAdmin(admin.ModelAdmin): |
babf71ec | 389 | inlines = (EvenementRemunerationInline,) |
6e7c919b | 390 | |
54d04eed | 391 | |
6e7c919b NC |
392 | class EvenementRemunerationAdmin(admin.ModelAdmin): |
393 | pass | |
394 | ||
54d04eed | 395 | |
26dacccc | 396 | class FamilleEmploiAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
babf71ec | 397 | inlines = (TypePosteInline,) |
26dacccc OL |
398 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
399 | (None, { | |
400 | 'fields': ('nom', ) | |
401 | }), | |
402 | ) | |
6e7c919b | 403 | |
54d04eed | 404 | |
aff1a4c6 | 405 | class OrganismeBstgAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin): |
d8d7985b | 406 | search_fields = ('nom', ) |
1c8856ef | 407 | list_display = ('nom', 'type', 'pays', ) |
babf71ec | 408 | inlines = (DossierROInline,) |
43f5653a OL |
409 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
410 | (None, { | |
411 | 'fields': ('nom', 'type', 'pays', ) | |
412 | }), | |
413 | ) | |
6e7c919b | 414 | |
54d04eed | 415 | |
aff1a4c6 | 416 | class PosteAdmin(AUFMetadataAdminMixin, ProtectRegionMixin, admin.ModelAdmin): |
387ab827 | 417 | alphabet_filter = 'nom' |
70561dc2 OL |
418 | search_fields = ('nom', 'implantation__code', 'implantation__nom', 'implantation__region__code', 'implantation__region__nom', ) |
419 | list_display = ('nom', 'implantation', 'service', 'type_poste', 'date_debut', 'date_fin', ) | |
d2cf315a | 420 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
6e7c919b | 421 | (None, { |
4497b3cb | 422 | 'fields': (('nom', 'nom_feminin'), 'implantation', 'type_poste', |
6e7c919b NC |
423 | 'service', 'responsable') |
424 | }), | |
425 | ('Contrat', { | |
4497b3cb | 426 | 'fields': (('regime_travail', 'regime_travail_nb_heure_semaine'), ) |
6e7c919b NC |
427 | }), |
428 | ('Recrutement', { | |
4497b3cb | 429 | 'fields': (('local', 'expatrie', 'mise_a_disposition', 'appel'),) |
6e7c919b NC |
430 | }), |
431 | ('Rémunération', { | |
4497b3cb PP |
432 | 'fields': (('classement_min', 'classement_max'), |
433 | ('valeur_point_min', 'valeur_point_max'), | |
434 | ('devise_min', 'devise_max'), | |
435 | ('salaire_min', 'salaire_max'), | |
436 | ('indemn_min', 'indemn_max'), | |
437 | ('autre_min', 'autre_max')) | |
6e7c919b NC |
438 | }), |
439 | ('Comparatifs de rémunération', { | |
4497b3cb PP |
440 | 'fields': ('devise_comparaison', |
441 | ('comp_locale_min', 'comp_locale_max'), | |
442 | ('comp_universite_min', 'comp_universite_max'), | |
443 | ('comp_fonctionpub_min', 'comp_fonctionpub_max'), | |
444 | ('comp_ong_min', 'comp_ong_max'), | |
445 | ('comp_autre_min', 'comp_autre_max')) | |
6e7c919b NC |
446 | }), |
447 | ('Justification', { | |
448 | 'fields': ('justification',) | |
449 | }), | |
450 | ('Autres Metadata', { | |
4497b3cb | 451 | 'fields': ('date_validation', ('date_debut', 'date_fin')) |
6e7c919b NC |
452 | }), |
453 | ) | |
454 | ||
babf71ec NC |
455 | inlines = (PosteFinancementInline, |
456 | PostePieceInline, | |
70561dc2 OL |
457 | DossierROInline, |
458 | PosteCommentaireInline, ) | |
6e7c919b | 459 | |
70561dc2 OL |
460 | def save_formset(self, request, form, formset, change): |
461 | instances = formset.save(commit=False) | |
462 | for instance in instances: | |
463 | if instance.__class__ == rh.PosteCommentaire: | |
464 | instance.owner = request.user | |
465 | instance.save() | |
466 | formset.save_m2m() | |
6e7c919b | 467 | |
aff1a4c6 | 468 | |
6e7c919b NC |
469 | class PosteCommentaireAdmin(admin.ModelAdmin): |
470 | pass | |
471 | ||
6e7c919b | 472 | |
babf71ec | 473 | class PosteFinancementAdmin(admin.ModelAdmin): |
6e7c919b NC |
474 | pass |
475 | ||
6e7c919b | 476 | |
babf71ec | 477 | class PostePieceAdmin(admin.ModelAdmin): |
6e7c919b NC |
478 | pass |
479 | ||
6e7c919b | 480 | |
babf71ec | 481 | class RemunerationAdmin(admin.ModelAdmin): |
6e7c919b NC |
482 | pass |
483 | ||
6e7c919b | 484 | |
1eede0db OL |
485 | class ResponsableImplantationAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
486 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
487 | (None, { | |
488 | 'fields': ('employe', 'implantation', ), | |
489 | }), | |
490 | ) | |
491 | ||
6e7c919b | 492 | |
43f5653a OL |
493 | class ServiceAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
494 | list_display = ('nom', 'actif', ) | |
495 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
496 | (None, { | |
497 | 'fields': ('nom', ), | |
498 | }), | |
499 | ) | |
6e7c919b | 500 | |
43f5653a OL |
501 | class StatutAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
502 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
503 | (None, { | |
504 | 'fields': ('code', 'nom', ), | |
505 | }), | |
506 | ) | |
6e7c919b | 507 | |
babf71ec | 508 | class TauxChangeAdmin(admin.ModelAdmin): |
24475cf1 OL |
509 | list_display = ('taux', 'devise', 'annee', ) |
510 | list_filter = ('devise', ) | |
dcbadfad OL |
511 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
512 | (None, { | |
513 | 'fields': ('taux', 'devise', 'annee', ), | |
514 | }), | |
515 | ) | |
6e7c919b | 516 | |
6e7c919b | 517 | class TypeContratAdmin(admin.ModelAdmin): |
babf71ec | 518 | inlines = (ContratInline,) |
7376afeb PP |
519 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
520 | (None, { | |
521 | 'fields': ('nom', 'nom_long', ), | |
522 | }), | |
523 | ) | |
6e7c919b | 524 | |
6e7c919b | 525 | |
240893cb | 526 | class TypePosteAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
d8d7985b | 527 | search_fields = ('nom', 'nom_feminin', ) |
52e05b08 OL |
528 | list_display = ('nom', 'famille_emploi', ) |
529 | list_filter = ('famille_emploi', ) | |
240893cb OL |
530 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
531 | (None, { | |
532 | 'fields': ('nom', 'nom_feminin', 'is_responsable', 'famille_emploi', ) | |
533 | }), | |
534 | ) | |
6e7c919b | 535 | |
6e7c919b | 536 | |
3f486b41 | 537 | class TypeRemunerationAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
f7efd29a | 538 | list_display = ('nom', 'type_paiement', 'nature_remuneration', ) |
3f486b41 OL |
539 | #inlines = (RemunerationROInline,) utilité? |
540 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
541 | (None, { | |
542 | 'fields': ('nom', 'type_paiement', 'nature_remuneration', ) | |
543 | }), | |
544 | ) | |
6e7c919b | 545 | |
6e7c919b | 546 | |
3f486b41 OL |
547 | class TypeRevalorisationAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
548 | #inlines = (RemunerationROInline,) utilité? | |
549 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( | |
550 | (None, { | |
551 | 'fields': ('nom', ) | |
552 | }), | |
553 | ) | |
6e7c919b | 554 | |
6e7c919b | 555 | |
84fc088b | 556 | class ValeurPointAdmin(AUFMetadataAdminMixin, admin.ModelAdmin): |
701f3bea | 557 | list_display = ('_devise_code', '_devise_nom', 'annee', 'valeur', ) |
84fc088b OL |
558 | fieldsets = AUFMetadataAdminMixin.fieldsets + ( |
559 | (None, { | |
560 | 'fields': ('valeur', 'devise', 'implantation', 'annee', ) | |
561 | }), | |
562 | ) | |
701f3bea OL |
563 | |
564 | def _devise_code(self, obj): | |
565 | return obj.devise.code | |
566 | _devise_code.short_description = "Code de la devise" | |
567 | ||
568 | def _devise_nom(self, obj): | |
569 | return obj.devise.nom | |
570 | _devise_nom.short_description = "Nom de la devise" |