1 # -*- encoding: utf-8 -*-
5 from django
.core
.urlresolvers
import reverse
6 from django
.contrib
import admin
7 from django
.conf
import settings
8 from django
.db
.models
import Q
9 from django
.template
.defaultfilters
import date
10 from ajax_select
import make_ajax_form
11 from auf
.django
.metadata
.admin
import AUFMetadataAdminMixin
, \
12 AUFMetadataInlineAdminMixin
, \
13 AUF_METADATA_READONLY_FIELDS
14 from forms
import ContratForm
, AyantDroitForm
, EmployeAdminForm
, AjaxSelect
15 from dae
.utils
import get_employe_from_user
16 from change_list
import ChangeList
17 from groups
import grp_drh
20 import auf
.django
.references
.models
as ref
22 class RegionProxy(ref
.Region
):
23 """ Proxy utilisé pour les organigrammes par région """
26 verbose_name
= u
"Organigramme par région"
27 verbose_name_plural
= u
"Organigramme par région"
30 class ImplantationProxy(ref
.Implantation
):
31 """ Proxy utilisé pour les organigrammes par implantation """
34 verbose_name
= u
"Organigramme par implantations"
35 verbose_name_plural
= u
"Organigramme par implantations"
38 class ServiceProxy(rh
.Service
):
39 """ Proxy utilisé pour les organigrammes opar service """
42 verbose_name
= u
"Organigramme par services"
43 verbose_name_plural
= u
"Organigramme par services"
46 class EmployeProxy(rh
.Employe
):
47 """ Proxy utilisé pour les organigrammes des employés """
50 verbose_name
= u
"Organigramme des employés"
51 verbose_name_plural
= u
"Organigramme des employés"
54 class DateRangeMixin(object):
55 prefixe_recherche_temporelle
= ""
57 def get_changelist(self
, request
, **kwargs
):
58 if 'HTTP_REFERER' in request
.META
.keys():
59 referer
= request
.META
['HTTP_REFERER']
60 referer
= "/".join(referer
.split('/')[3:])
61 referer
= "/%s" % referer
.split('?')[0]
62 change_list_view
= 'admin:%s_%s_changelist' % (
63 self
.model
._meta
.app_label
,
64 self
.model
.__name__
.lower(),)
65 if referer
!= reverse(change_list_view
):
66 params
= request
.GET
.copy()
67 params
.update({'statut': 'Actif'})
72 # Override of the InlineModelAdmin to support the link in the tabular inline
73 class LinkedInline(admin
.options
.InlineModelAdmin
):
74 template
= "admin/linked.html"
75 admin_model_path
= None
77 def __init__(self
, *args
):
78 super(LinkedInline
, self
).__init__(*args
)
79 if self
.admin_model_path
is None:
80 self
.admin_model_path
= self
.model
.__name__
.lower()
83 class ProtectRegionMixin(object):
85 def queryset(self
, request
):
86 from dae
.workflow
import grp_drh
, grp_correspondants_rh
87 qs
= super(ProtectRegionMixin
, self
).queryset(request
)
89 if request
.user
.is_superuser
:
92 user_groups
= request
.user
.groups
.all()
94 if grp_drh
in user_groups
:
97 if grp_correspondants_rh
in user_groups
:
98 employe
= get_employe_from_user(request
.user
)
99 q
= Q(**{self
.model
.prefix_implantation
: \
100 employe
.implantation
.region
})
101 qs
= qs
.filter(q
).distinct()
105 def has_change_permission(self
, request
, obj
=None):
106 user_groups
= request
.user
.groups
.all()
108 # Lock pour autoriser uniquement les DRH à utiliser RH
109 if not request
.user
.is_superuser
and not grp_drh
in user_groups
:
112 if len(user_groups
) == 0 and not request
.user
.is_superuser
:
117 ids
= [o
.id for o
in self
.queryset(request
)]
123 class ReadOnlyInlineMixin(object):
125 def get_readonly_fields(self
, request
, obj
=None):
126 return [f
.name
for f
in self
.model
._meta
.fields \
127 if f
.name
not in AUF_METADATA_READONLY_FIELDS
]
130 class AyantDroitInline(AUFMetadataInlineAdminMixin
, admin
.StackedInline
):
131 model
= rh
.AyantDroit
132 form
= AyantDroitForm
139 ('nom_affichage', 'genre'),
147 class AyantDroitCommentaireInline(AUFMetadataInlineAdminMixin
, \
148 admin
.TabularInline
):
149 readonly_fields
= ('owner', )
150 model
= rh
.AyantDroitCommentaire
154 class ContratInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
160 class DossierROInline(ReadOnlyInlineMixin
, LinkedInline
):
161 template
= "admin/rh/dossier/linked.html"
162 exclude
= AUF_METADATA_READONLY_FIELDS
167 def has_add_permission(self
, request
=None):
170 def has_change_permission(self
, request
, obj
=None):
173 def has_delete_permission(self
, request
, obj
=None):
177 class DossierCommentaireInline(AUFMetadataInlineAdminMixin
, \
178 admin
.TabularInline
):
179 readonly_fields
= ('owner', )
180 model
= rh
.DossierCommentaire
184 class DossierPieceInline(admin
.TabularInline
):
185 model
= rh
.DossierPiece
189 class EmployeInline(admin
.TabularInline
):
193 class EmployeCommentaireInline(AUFMetadataInlineAdminMixin
, \
194 admin
.TabularInline
):
195 readonly_fields
= ('owner', )
196 model
= rh
.EmployeCommentaire
200 class EmployePieceInline(admin
.TabularInline
):
201 model
= rh
.EmployePiece
205 class PosteCommentaireInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
206 readonly_fields
= ('owner', )
207 model
= rh
.PosteCommentaire
211 class PosteFinancementInline(admin
.TabularInline
):
212 model
= rh
.PosteFinancement
215 class PostePieceInline(admin
.TabularInline
):
216 model
= rh
.PostePiece
219 class RemunerationInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
220 model
= rh
.Remuneration
224 class RemunerationROInline(ReadOnlyInlineMixin
, RemunerationInline
):
228 class TypePosteInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
232 class PosteComparaisonInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
233 model
= rh
.PosteComparaison
236 class ClassementAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
237 list_display
= ('_classement', '_date_modification', 'user_modification', )
238 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
240 'fields': ('type', 'echelon', 'degre', 'coefficient',)}),
243 def _classement(self
, obj
):
245 _classement
.short_description
= u
"Classement"
247 def _date_modification(self
, obj
):
248 return date(obj
.date_modification
) \
249 if obj
.date_modification
is not None else "(aucune)"
250 _date_modification
.short_description
= u
'date modification'
251 _date_modification
.admin_order_field
= 'date_modification'
254 class CommentaireAdmin(admin
.ModelAdmin
):
258 class DeviseAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
263 '_date_modification',
266 list_filter
= ('archive', )
267 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
269 'fields': ('code', 'nom', 'archive', ),
273 def queryset(self
, request
):
274 return self
.model
._base_manager
276 def _archive(self
, obj
):
281 _archive
.short_description
= u
'Archivé'
283 def _date_modification(self
, obj
):
284 return date(obj
.date_modification
) \
285 if obj
.date_modification
is not None else "(aucune)"
286 _date_modification
.short_description
= u
'date modification'
287 _date_modification
.admin_order_field
= 'date_modification'
290 class DossierAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
291 ProtectRegionMixin
, admin
.ModelAdmin
, AjaxSelect
,):
292 alphabet_filter
= 'employe__nom'
297 'poste__nom_feminin')
306 '_date_modification',
309 list_display_links
= ('_nom',)
311 'poste__implantation__region',
312 'poste__implantation',
313 'poste__type_poste__famille_emploi',
315 'rh_contrats__type_contrat',
317 inlines
= (DossierPieceInline
, ContratInline
,
319 DossierCommentaireInline
,
321 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
327 'organisme_bstg',)}),
332 'remplacement_de', )}),
336 ('regime_travail', 'regime_travail_nb_heure_semaine'),)}),
337 ('Occupation du Poste par cet Employe', {
338 'fields': (('date_debut', 'date_fin'), )}
341 form
= make_ajax_form(rh
.Dossier
, {
342 'employe': 'employes',
344 'remplacement_de': 'dossiers',
347 def lookup_allowed(self
, key
, value
):
349 'employe__nom__istartswith',
350 'poste__implantation__region__id__exact',
351 'poste__implantation__id__exact',
352 'poste__type_poste__id__exact',
353 'poste__type_poste__famille_emploi__id__exact',
354 'rh_contrats__type_contrat__id__exact',
360 _id
.short_description
= u
"#"
361 _id
.admin_order_field
= "id"
364 return "%d : %s %s" % (
366 obj
.employe
.nom
.upper(),
368 _nom
.allow_tags
= True
369 _nom
.short_description
= u
"Dossier"
371 def _apercu(self
, d
):
372 apercu_link
= u
"""<a title="Aperçu du dossier"
373 onclick="return showAddAnotherPopup(this);"
375 <img src="%simg/loupe.png" />
377 (reverse('dossier_apercu', args
=(d
.id,)),
381 _apercu
.allow_tags
= True
382 _apercu
.short_description
= u
""
384 def _date_debut(self
, obj
):
385 return date(obj
.date_debut
)
387 _date_debut
.short_description
= u
'Occupation début'
388 _date_debut
.admin_order_field
= 'date_debut'
390 def _date_fin(self
, obj
):
391 return date(obj
.date_fin
)
392 _date_fin
.short_description
= u
'Occupation fin'
393 _date_fin
.admin_order_field
= 'date_fin'
395 def _date_modification(self
, obj
):
396 return date(obj
.date_modification
) \
397 if obj
.date_modification
is not None else "(aucune)"
398 _date_modification
.short_description
= u
'date modification'
399 _date_modification
.admin_order_field
= 'date_modification'
401 def _poste(self
, dossier
):
402 link
= u
"""<a title="Aperçu du poste"
403 onclick="return showAddAnotherPopup(this);"
404 href='%s'><img src="%simg/loupe.png" />
406 <a href="%s" title="Modifier le poste">%s</a>""" % \
407 (reverse('poste_apercu', args
=(dossier
.poste
.id,)),
409 reverse('admin:rh_poste_change', args
=(dossier
.poste
.id,)),
413 _poste
.allow_tags
= True
414 _poste
.short_description
= u
'Poste'
415 _poste
.admin_order_field
= 'poste__nom'
417 def _employe(self
, obj
):
418 employe
= obj
.employe
419 view_link
= reverse('employe_apercu', args
=(employe
.id,))
420 edit_link
= reverse('admin:rh_employe_change', args
=(employe
.id,))
423 view
= u
"""<a href="%s"
424 title="Aperçu l'employé"
425 onclick="return showAddAnotherPopup(this);">
426 <img src="%simg/loupe.png" />
427 </a>""" % (view_link
, settings
.STATIC_URL
,)
428 return u
"""%s<a href='%s' style="%s;">%s</a>""" % \
429 (view
, edit_link
, style
, employe
)
430 _employe
.allow_tags
= True
431 _employe
.short_description
= u
"Employé"
432 _employe
.admin_order_field
= "employe__nom"
434 def save_formset(self
, request
, form
, formset
, change
):
435 instances
= formset
.save(commit
=False)
436 for instance
in instances
:
437 if instance
.__class__
== rh
.DossierCommentaire
:
438 instance
.owner
= request
.user
439 instance
.date_creation
= datetime
.datetime
.now()
443 class DossierPieceAdmin(admin
.ModelAdmin
):
447 class DossierCommentaireAdmin(admin
.ModelAdmin
):
451 class EmployeAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
452 ProtectRegionMixin
, admin
.ModelAdmin
,):
453 prefixe_recherche_temporelle
= "rh_dossiers__"
454 alphabet_filter
= 'nom'
455 DEFAULT_ALPHABET
= u
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
456 search_fields
= ('id', 'nom', 'prenom', 'nom_affichage', )
458 form
= EmployeAdminForm
464 '_date_modification',
467 list_display_links
= ('_nom',)
469 'rh_dossiers__poste__implantation__region',
470 'rh_dossiers__poste__implantation',
473 inlines
= (AyantDroitInline
,
476 EmployeCommentaireInline
)
477 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
481 ('nom_affichage', 'genre'),
486 ('Informations personnelles', {
487 'fields': ('situation_famille', 'date_entree', )}
491 ('tel_domicile', 'tel_cellulaire'),
492 ('adresse', 'ville'),
493 ('code_postal', 'province'),
499 def _apercu(self
, obj
):
500 return u
"""<a title="Aperçu de l'employé"
501 onclick="return showAddAnotherPopup(this);"
503 <img src="%simg/loupe.png" />
505 (reverse('employe_apercu', args
=(obj
.id,)), settings
.STATIC_URL
)
506 _apercu
.allow_tags
= True
507 _apercu
.short_description
= u
""
510 edit_link
= reverse('admin:rh_employe_change', args
=(obj
.id,))
511 return u
"""<a href='%s'><strong>%s</strong></a>""" % \
512 (edit_link
, "%s %s" % (obj
.nom
.upper(), obj
.prenom
))
513 _nom
.allow_tags
= True
514 _nom
.short_description
= u
"Employé"
515 _nom
.admin_order_field
= "nom"
519 _id
.short_description
= u
"#"
520 _id
.admin_order_field
= "id"
522 def _date_modification(self
, obj
):
523 return date(obj
.date_modification
) \
524 if obj
.date_modification
is not None else "(aucune)"
525 _date_modification
.short_description
= u
'date modification'
526 _date_modification
.admin_order_field
= 'date_modification'
528 def _dossiers_postes(self
, obj
):
530 for d
in obj
.rh_dossiers
.all().order_by('-date_debut'):
531 dossier
= u
"""<a title="Aperçu du dossier"
533 onclick="return showAddAnotherPopup(this);"
534 title="Aperçu du dossier">
535 <img src="%simg/loupe.png" />
537 <a href="%s">Dossier</a>
539 (reverse('dossier_apercu', args
=(d
.id,)),
541 reverse('admin:rh_dossier_change', args
=(d
.id,)))
543 poste
= u
"""<a title="Aperçu du poste"
545 onclick="return showAddAnotherPopup(this);"
546 title="Aperçu du poste">
547 <img src="%simg/loupe.png" />
549 <a href="%s">Poste</a>
551 (reverse('poste_apercu', args
=(d
.poste
.id,)),
553 reverse('admin:rh_poste_change', args
=(d
.poste
.id,)))
554 link
= u
"""<li>%s %s - %s : [%s] %s</li>""" % \
561 # Dossier terminé en gris non cliquable
562 if d
.date_fin
is not None and d
.date_fin
< datetime
.date
.today():
563 link
= u
"""<li style="color: grey">%s : [%s] %s</li>""" % \
570 return "<ul>%s</ul>" % "\n".join(l
)
571 _dossiers_postes
.allow_tags
= True
572 _dossiers_postes
.short_description
= u
"Dossiers et postes"
574 def queryset(self
, request
):
575 qs
= super(EmployeAdmin
, self
).queryset(request
)
576 return qs
.select_related(depth
=1).order_by('nom')
578 def save_formset(self
, request
, form
, formset
, change
):
579 instances
= formset
.save(commit
=False)
580 for instance
in instances
:
581 if instance
.__class__
== rh
.EmployeCommentaire
:
582 instance
.owner
= request
.user
583 instance
.date_creation
= datetime
.datetime
.now()
587 class EmployeProxyAdmin(EmployeAdmin
):
588 list_display
= ('_id', '_apercu', '_nom', '_organigramme')
589 list_display_links
= ('_nom',)
591 def has_add_permission(self
, obj
):
594 def _organigramme(self
, obj
):
596 for d
in rh
.Dossier
.objects
.filter((Q(date_fin__gt
=datetime
.date
.today()) |
Q(date_fin
=None)) & (Q(date_debut__lt
=datetime
.date
.today()) |
Q(date_debut
=None)) ).filter(employe
=obj
.id).all():
597 organigramme
= u
"""Organigramme, niveau: <input type="text" id="level_%s" style="width:30px;height:15px;" /> <input type="button" value="Générer" onclick="window.location='%s'+document.getElementById('level_%s').value" />""" % \
598 (d
.poste
.id, reverse('rho_employe_sans_niveau', args
=(d
.poste
.id,)), d
.poste
.id)
599 link
= u
"""<li>%s - [%s] %s : %s</li>""" % \
606 return "<ul>%s</ul>" % "\n".join(l
)
608 _organigramme
.allow_tags
= True
609 _organigramme
.short_description
= "Organigramme"
612 class EmployeCommentaireAdmin(admin
.ModelAdmin
):
616 class EmployePieceAdmin(admin
.ModelAdmin
):
620 class FamilleEmploiAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
621 list_display
= ('nom', '_date_modification', 'user_modification', )
622 inlines
= (TypePosteInline
,)
623 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
624 (None, {'fields': ('nom', )}),)
626 def _date_modification(self
, obj
):
627 return date(obj
.date_modification
) \
628 if obj
.date_modification
is not None else "(aucune)"
629 _date_modification
.short_description
= u
'date modification'
630 _date_modification
.admin_order_field
= 'date_modification'
633 class OrganismeBstgAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
634 search_fields
= ('nom',)
639 '_date_modification',
642 list_filter
= ('type', )
643 inlines
= (DossierROInline
,)
644 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
645 (None, {'fields': ('nom', 'type', 'pays',)}),
648 def _date_modification(self
, obj
):
649 return date(obj
.date_modification
) \
650 if obj
.date_modification
is not None else "(aucune)"
651 _date_modification
.short_description
= u
'date modification'
652 _date_modification
.admin_order_field
= 'date_modification'
655 class PosteAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
656 ProtectRegionMixin
, admin
.ModelAdmin
, AjaxSelect
,):
657 form
= make_ajax_form(rh
.Poste
, {
658 'implantation': 'implantations',
659 'type_poste': 'typepostes',
660 'responsable': 'postes',
661 'valeur_point_min': 'valeurpoints',
662 'valeur_point_max': 'valeurpoints',
664 alphabet_filter
= 'nom'
669 'implantation__region__code',
670 'implantation__region__nom',
671 'rh_dossiers__employe__nom',
672 'rh_dossiers__employe__prenom',
684 '_date_modification',
688 'implantation__region',
692 'type_poste__famille_emploi',
695 list_display_links
= ('_nom',)
696 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
698 ('nom', 'nom_feminin'),
708 'regime_travail_nb_heure_semaine'),
712 'fields': (('local', 'expatrie', 'mise_a_disposition', 'appel'),)}
715 'fields': (('classement_min',
728 ('Comparatifs de rémunération', {
729 'fields': ('devise_comparaison',
730 ('comp_locale_min', 'comp_locale_max'),
731 ('comp_universite_min', 'comp_universite_max'),
732 ('comp_fonctionpub_min', 'comp_fonctionpub_max'),
733 ('comp_ong_min', 'comp_ong_max'),
734 ('comp_autre_min', 'comp_autre_max'))}
737 'fields': ('justification',)}
739 ('Autres Méta-données', {
740 'fields': ('date_debut', 'date_fin')}
744 inlines
= (PosteFinancementInline
,
747 PosteComparaisonInline
,
748 PosteCommentaireInline
, )
750 def lookup_allowed(self
, key
, value
):
753 'date_debut__isnull',
756 'implantation__region__id__exact',
757 'implantation__id__exact',
758 'type_poste__id__exact',
759 'type_poste__famille_emploi__id__exact',
760 'service__id__exact',
767 def _apercu(self
, poste
):
768 view_link
= u
"""<a onclick="return showAddAnotherPopup(this);"
769 title="Aperçu du poste"
771 <img src="%simg/loupe.png" />
773 (reverse('poste_apercu', args
=(poste
.id,)),
774 settings
.STATIC_URL
,)
776 _apercu
.allow_tags
= True
777 _apercu
.short_description
= ''
781 _id
.short_description
= '#'
782 _id
.admin_order_field
= 'id'
784 def _service(self
, obj
):
785 if obj
.service
.supprime
:
786 return """<span style="color:red">%s</span>""" % obj
.service
789 _service
.short_description
= 'Service'
790 _service
.allow_tags
= True
792 def _responsable(self
, obj
):
794 responsable
= u
"""<a href="%s"
795 onclick="return showAddAnotherPopup(this)">
796 <img src="%simg/loupe.png"
797 title="Aperçu du poste" />
801 (reverse('poste_apercu', args
=(obj
.responsable
.id,)),
803 reverse('admin:rh_poste_change', args
=(obj
.responsable
.id,)),
809 employe_id
= obj
.responsable
.rh_dossiers
.all()[0].id
812 onclick="return showAddAnotherPopup(this)">
813 <img src="%simg/loupe.png"
814 title="Aperçu de l'employé">
816 <a href="%s">%s</a>""" % \
817 (reverse('employe_apercu', args
=(employe_id
,)),
819 reverse('admin:rh_employe_change', args
=(employe_id
,)),
824 return "%s %s" % (responsable
, employe
)
825 _responsable
.short_description
= 'Responsable'
826 _responsable
.allow_tags
= True
828 def _nom(self
, poste
):
829 return """<a href="%s">%s</a>""" % \
830 (reverse('admin:rh_poste_change', args
=(poste
.id,)),
832 _nom
.allow_tags
= True
833 _nom
.short_description
= u
'Nom'
834 _nom
.admin_order_field
= 'nom'
836 def _date_modification(self
, obj
):
837 return date(obj
.date_modification
)
838 _date_modification
.short_description
= u
'date modification'
839 _date_modification
.admin_order_field
= 'date_modification'
841 def _occupe_par(self
, obj
):
842 """Formatte la méthode Poste.occupe_par() pour l'admin"""
844 if obj
.date_fin
is not None and obj
.date_fin
< datetime
.date
.now():
846 employes
= obj
.occupe_par()
850 link
= u
"""<a href='%s'
851 title='Aperçu de l\'employer'
852 onclick='return showAddAnotherPopup(this)'>
853 <img src='%simg/loupe.png' />
855 <a href='%s'>%s</a>""" % \
856 (reverse('employe_apercu', args
=(e
.id,)),
858 reverse('admin:rh_employe_change', args
=(e
.id,)),
861 output
= "\n<br />".join(l
)
863 _occupe_par
.allow_tags
= True
864 _occupe_par
.short_description
= "Occupé par"
866 def save_formset(self
, request
, form
, formset
, change
):
867 instances
= formset
.save(commit
=False)
868 for instance
in instances
:
869 if instance
.__class__
== rh
.PosteCommentaire
:
870 instance
.owner
= request
.user
871 instance
.date_creation
= datetime
.datetime
.now()
876 class PosteCommentaireAdmin(admin
.ModelAdmin
):
880 class PosteFinancementAdmin(admin
.ModelAdmin
):
884 class PostePieceAdmin(admin
.ModelAdmin
):
888 class RemunerationAdmin(admin
.ModelAdmin
):
892 class ResponsableImplantationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
893 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
895 'fields': ('employe', 'implantation', ),
900 class ServiceAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
904 '_date_modification',
907 list_filter
= ('archive', )
908 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
910 'fields': ('nom', 'archive', ),
914 def _archive(self
, obj
):
919 _archive
.short_description
= u
'Archivé'
921 def _date_modification(self
, obj
):
922 return date(obj
.date_modification
) \
923 if obj
.date_modification
is not None else "(aucune)"
924 _date_modification
.short_description
= u
'date modification'
925 _date_modification
.admin_order_field
= 'date_modification'
928 class ServiceProxyAdmin(ServiceAdmin
):
929 list_display
= ('nom', '_organigramme')
930 list_display_links
= ('nom',)
932 def has_add_permission(self
, obj
):
935 def _organigramme(self
, obj
):
936 return """<a href="%s">Organigramme</a>""" % (reverse('rho_implantation', args
=(obj
.id,)))
937 _organigramme
.allow_tags
= True
938 _organigramme
.short_description
= "Organigramme"
940 class StatutAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
941 list_display
= ('code', 'nom', '_date_modification', 'user_modification', )
942 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
944 'fields': ('code', 'nom', ),
948 def _date_modification(self
, obj
):
949 return date(obj
.date_modification
) \
950 if obj
.date_modification
is not None else "(aucune)"
951 _date_modification
.short_description
= u
'date modification'
952 _date_modification
.admin_order_field
= 'date_modification'
955 class TauxChangeAdmin(admin
.ModelAdmin
):
960 '_date_modification',
963 list_filter
= ('devise', )
964 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
966 'fields': ('taux', 'devise', 'annee', ),
970 def _date_modification(self
, obj
):
971 return date(obj
.date_modification
) \
972 if obj
.date_modification
is not None else "(aucune)"
973 _date_modification
.short_description
= u
'date modification'
974 _date_modification
.admin_order_field
= 'date_modification'
977 class TypeContratAdmin(admin
.ModelAdmin
):
981 '_date_modification',
984 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
986 'fields': ('nom', 'nom_long', ),
990 def _date_modification(self
, obj
):
991 return date(obj
.date_modification
) \
992 if obj
.date_modification
is not None else "(aucune)"
993 _date_modification
.short_description
= u
'date modification'
994 _date_modification
.admin_order_field
= 'date_modification'
997 class TypePosteAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
998 search_fields
= ('nom', 'nom_feminin', )
1002 '_date_modification',
1003 'user_modification',
1005 list_filter
= ('famille_emploi', )
1006 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1017 def _date_modification(self
, obj
):
1018 return date(obj
.date_modification
) \
1019 if obj
.date_modification
is not None else "(aucune)"
1020 _date_modification
.short_description
= u
'date modification'
1021 _date_modification
.admin_order_field
= 'date_modification'
1024 class TypeRemunerationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1028 'nature_remuneration',
1029 '_date_modification',
1030 'user_modification',)
1031 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1032 (None, {'fields': ('nom', 'type_paiement', 'nature_remuneration',)}),
1035 def _date_modification(self
, obj
):
1036 return date(obj
.date_modification
) \
1037 if obj
.date_modification
is not None else "(aucune)"
1038 _date_modification
.short_description
= u
'date modification'
1039 _date_modification
.admin_order_field
= 'date_modification'
1042 class TypeRevalorisationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1043 list_display
= ('nom', '_date_modification', 'user_modification', )
1044 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1045 (None, {'fields': ('nom', )}),
1048 def _date_modification(self
, obj
):
1049 return date(obj
.date_modification
) \
1050 if obj
.date_modification
is not None else "(aucune)"
1051 _date_modification
.short_description
= u
'date modification'
1052 _date_modification
.admin_order_field
= 'date_modification'
1055 class ValeurPointAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1061 '_date_modification',
1062 'user_modification',
1064 list_filter
= ('annee', 'devise', )
1065 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1066 (None, {'fields': ('valeur', 'devise', 'implantation', 'annee', )}),
1069 def _date_modification(self
, obj
):
1070 return date(obj
.date_modification
) \
1071 if obj
.date_modification
is not None else "(aucune)"
1072 _date_modification
.short_description
= u
'date modification'
1073 _date_modification
.admin_order_field
= 'date_modification'
1075 def _devise_code(self
, obj
):
1076 return obj
.devise
.code
1077 _devise_code
.short_description
= "Code de la devise"
1079 def _devise_nom(self
, obj
):
1080 return obj
.devise
.nom
1081 _devise_nom
.short_description
= "Nom de la devise"
1083 class ImplantationProxyAdmin(admin
.ModelAdmin
):
1084 list_display
= ('nom', '_organigramme')
1085 list_display_links
= ('nom',)
1087 def has_add_permission(self
, obj
):
1090 def _organigramme(self
, obj
):
1091 return """<a href="%s">Organigramme</a>""" % (reverse('rho_implantation', args
=(obj
.id,)))
1092 _organigramme
.allow_tags
= True
1093 _organigramme
.short_description
= "Organigramme"
1095 class RegionProxyAdmin(admin
.ModelAdmin
):
1096 list_display
= ('nom', '_organigramme')
1097 list_display_links
= ('nom',)
1099 def has_add_permission(self
, obj
):
1102 def _organigramme(self
, obj
):
1103 return """<a href="%s">Organigramme</a>""" % (reverse('rho_region', args
=(obj
.id,)))
1104 _organigramme
.allow_tags
= True
1105 _organigramme
.short_description
= "Organigramme"
1110 admin
.site
.register(rh
.Classement
, ClassementAdmin
)
1111 admin
.site
.register(rh
.Devise
, DeviseAdmin
)
1112 admin
.site
.register(rh
.Dossier
, DossierAdmin
)
1113 admin
.site
.register(EmployeProxy
, EmployeProxyAdmin
)
1114 admin
.site
.register(ServiceProxy
, ServiceProxyAdmin
)
1115 admin
.site
.register(rh
.Employe
, EmployeAdmin
)
1116 admin
.site
.register(rh
.FamilleEmploi
, FamilleEmploiAdmin
)
1117 admin
.site
.register(rh
.OrganismeBstg
, OrganismeBstgAdmin
)
1118 admin
.site
.register(rh
.Poste
, PosteAdmin
)
1119 admin
.site
.register(rh
.ResponsableImplantation
, ResponsableImplantationAdmin
)
1120 admin
.site
.register(rh
.Service
, ServiceAdmin
)
1121 admin
.site
.register(rh
.Statut
, StatutAdmin
)
1122 admin
.site
.register(rh
.TauxChange
, TauxChangeAdmin
)
1123 admin
.site
.register(rh
.TypeContrat
, TypeContratAdmin
)
1124 admin
.site
.register(rh
.TypePoste
, TypePosteAdmin
)
1125 admin
.site
.register(rh
.TypeRemuneration
, TypeRemunerationAdmin
)
1126 admin
.site
.register(rh
.TypeRevalorisation
, TypeRevalorisationAdmin
)
1127 admin
.site
.register(rh
.ValeurPoint
, ValeurPointAdmin
)
1128 admin
.site
.register(ImplantationProxy
, ImplantationProxyAdmin
)
1129 admin
.site
.register(RegionProxy
, RegionProxyAdmin
)