1 # -*- encoding: utf-8 -*-
5 from ajax_select
import make_ajax_form
6 from auf
.django
.metadata
.admin
import \
7 AUFMetadataAdminMixin
, AUFMetadataInlineAdminMixin
, \
8 AUF_METADATA_READONLY_FIELDS
9 from django
.core
.urlresolvers
import reverse
10 from django
.contrib
import admin
11 from django
.conf
import settings
12 from django
.db
.models
import Q
, Count
13 from django
.template
.defaultfilters
import date
15 import auf
.django
.references
.models
as ref
18 ContratForm
, AyantDroitForm
, EmployeAdminForm
, AjaxSelect
, DossierForm
19 from dae
.utils
import get_employe_from_user
20 from change_list
import ChangeList
21 from groups
import grp_correspondants_rh
22 from decorators
import in_drh_or_admin
25 class ArchiveMixin(object):
27 Archive Mixin pour gérer le queryset et le display
28 NON COMPRIS : list_filter, et list_display, field à setter dans la classe.
31 def queryset(self
, request
):
32 return self
.model
._base_manager
34 def _archive(self
, obj
):
39 _archive
.short_description
= u
'Archivé'
40 _archive
.admin_order_field
= 'archive'
43 class RegionProxy(ref
.Region
):
44 """ Proxy utilisé pour les organigrammes par région """
47 verbose_name
= u
"Organigramme par région"
48 verbose_name_plural
= u
"Organigramme par région"
51 class ImplantationProxy(ref
.Implantation
):
52 """ Proxy utilisé pour les organigrammes par implantation """
55 verbose_name
= u
"Organigramme par implantations"
56 verbose_name_plural
= u
"Organigramme par implantations"
59 class ServiceProxy(rh
.Service
):
60 """ Proxy utilisé pour les organigrammes opar service """
64 verbose_name
= u
"Organigramme par services"
65 verbose_name_plural
= u
"Organigramme par services"
68 class EmployeProxy(rh
.Employe
):
69 """ Proxy utilisé pour les organigrammes des employés """
72 verbose_name
= u
"Organigramme des employés"
73 verbose_name_plural
= u
"Organigramme des employés"
76 class DateRangeMixin(object):
77 prefixe_recherche_temporelle
= ""
79 def get_changelist(self
, request
, **kwargs
):
80 if 'HTTP_REFERER' in request
.META
.keys():
81 referer
= request
.META
['HTTP_REFERER']
82 referer
= "/".join(referer
.split('/')[3:])
83 referer
= "/%s" % referer
.split('?')[0]
84 change_list_view
= 'admin:%s_%s_changelist' % (
85 self
.model
._meta
.app_label
,
86 self
.model
.__name__
.lower(),)
87 if referer
!= reverse(change_list_view
):
88 params
= request
.GET
.copy()
89 params
.update({'statut': 'Actif'})
94 # Override of the InlineModelAdmin to support the link in the tabular inline
95 class LinkedInline(admin
.options
.InlineModelAdmin
):
96 template
= "admin/linked.html"
97 admin_model_path
= None
99 def __init__(self
, *args
):
100 super(LinkedInline
, self
).__init__(*args
)
101 if self
.admin_model_path
is None:
102 self
.admin_model_path
= self
.model
.__name__
.lower()
105 class ProtectRegionMixin(object):
107 def queryset(self
, request
):
108 qs
= super(ProtectRegionMixin
, self
).queryset(request
)
110 user_groups
= request
.user
.groups
.all()
111 if in_drh_or_admin(request
.user
):
114 if grp_correspondants_rh
in user_groups
:
115 employe
= get_employe_from_user(request
.user
)
116 q
= Q(**{self
.model
.prefix_implantation
: \
117 employe
.implantation
.region
})
118 qs
= qs
.filter(q
).distinct()
122 def has_add_permission(self
, request
):
123 if not in_drh_or_admin(request
.user
):
128 def has_change_permission(self
, request
, obj
=None):
129 user_groups
= request
.user
.groups
.all()
131 # Lock pour autoriser uniquement les DRH à utiliser RH
132 if not in_drh_or_admin(request
.user
):
135 if len(user_groups
) == 0 and not request
.user
.is_superuser
:
140 ids
= [o
.id for o
in self
.queryset(request
)]
146 class ReadOnlyInlineMixin(object):
148 def get_readonly_fields(self
, request
, obj
=None):
149 return [f
.name
for f
in self
.model
._meta
.fields \
150 if f
.name
not in AUF_METADATA_READONLY_FIELDS
]
153 class AyantDroitInline(AUFMetadataInlineAdminMixin
, admin
.StackedInline
):
154 model
= rh
.AyantDroit
155 form
= AyantDroitForm
162 ('nom_affichage', 'genre'),
170 class AyantDroitCommentaireInline(AUFMetadataInlineAdminMixin
, \
171 admin
.TabularInline
):
172 readonly_fields
= ('owner', )
173 model
= rh
.AyantDroitCommentaire
177 class ContratInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
183 class DossierROInline(ReadOnlyInlineMixin
, LinkedInline
):
184 template
= "admin/rh/dossier/linked.html"
185 exclude
= AUF_METADATA_READONLY_FIELDS
190 def has_add_permission(self
, request
=None):
193 def has_change_permission(self
, request
, obj
=None):
196 def has_delete_permission(self
, request
, obj
=None):
200 class DossierCommentaireInline(AUFMetadataInlineAdminMixin
, \
201 admin
.TabularInline
):
202 readonly_fields
= ('owner', )
203 model
= rh
.DossierCommentaire
207 class DossierPieceInline(admin
.TabularInline
):
208 model
= rh
.DossierPiece
212 class EmployeInline(admin
.TabularInline
):
216 class EmployeCommentaireInline(AUFMetadataInlineAdminMixin
, \
217 admin
.TabularInline
):
218 readonly_fields
= ('owner', )
219 model
= rh
.EmployeCommentaire
223 class EmployePieceInline(admin
.TabularInline
):
224 model
= rh
.EmployePiece
228 class PosteCommentaireInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
229 readonly_fields
= ('owner', )
230 model
= rh
.PosteCommentaire
234 class PosteFinancementInline(admin
.TabularInline
):
235 model
= rh
.PosteFinancement
238 class PostePieceInline(admin
.TabularInline
):
239 model
= rh
.PostePiece
242 class RemunerationInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
243 model
= rh
.Remuneration
247 class RemunerationROInline(ReadOnlyInlineMixin
, RemunerationInline
):
251 class TypePosteInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
255 class PosteComparaisonInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
256 model
= rh
.PosteComparaison
259 class ClassementAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
260 list_display
= ('_classement', '_date_modification', 'user_modification', )
261 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
263 'fields': ('type', 'echelon', 'degre', 'coefficient',)}),
266 def _classement(self
, obj
):
268 _classement
.short_description
= u
"Classement"
270 def _date_modification(self
, obj
):
271 return date(obj
.date_modification
) \
272 if obj
.date_modification
is not None else "(aucune)"
273 _date_modification
.short_description
= u
'date modification'
274 _date_modification
.admin_order_field
= 'date_modification'
277 class CommentaireAdmin(admin
.ModelAdmin
):
281 class DeviseAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
, ArchiveMixin
):
286 '_date_modification',
289 list_filter
= ('archive', )
290 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
292 'fields': ('code', 'nom', 'archive', ),
296 def _date_modification(self
, obj
):
297 return date(obj
.date_modification
) \
298 if obj
.date_modification
is not None else "(aucune)"
299 _date_modification
.short_description
= u
'date modification'
300 _date_modification
.admin_order_field
= 'date_modification'
303 class DossierAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
304 ProtectRegionMixin
, admin
.ModelAdmin
, AjaxSelect
,):
305 alphabet_filter
= 'employe__nom'
313 'poste__nom_feminin',
314 'poste__implantation__nom',
324 '_date_modification',
328 list_display_links
= ('_nom',)
330 'poste__implantation__region',
331 'poste__implantation',
332 'poste__type_poste__categorie_emploi',
334 'rh_contrats__type_contrat',
337 inlines
= (DossierPieceInline
, ContratInline
,
339 DossierCommentaireInline
,
341 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
348 'organisme_bstg',)}),
353 'remplacement_de', )}),
357 ('regime_travail', 'regime_travail_nb_heure_semaine'),)}),
358 ('Occupation du Poste par cet Employe', {
359 'fields': (('date_debut', 'date_fin'), )}
362 form
= make_ajax_form(rh
.Dossier
, {
363 'employe': 'employes',
365 'remplacement_de': 'dossiers',
366 }, superclass
=DossierForm
)
368 def lookup_allowed(self
, key
, value
):
370 'employe__nom__istartswith',
371 'poste__implantation__region__id__exact',
372 'poste__implantation__id__exact',
373 'poste__type_poste__id__exact',
374 'poste__type_poste__categorie_emploi__id__exact',
375 'rh_contrats__type_contrat__id__exact',
383 _id
.short_description
= u
"#"
384 _id
.admin_order_field
= "id"
387 return "%d : %s %s" % (
389 obj
.employe
.nom
.upper(),
391 _nom
.allow_tags
= True
392 _nom
.short_description
= u
"Dossier"
394 def _apercu(self
, d
):
395 apercu_link
= u
"""<a title="Aperçu du dossier"
396 onclick="return showAddAnotherPopup(this);"
398 <img src="%simg/loupe.png" />
400 (reverse('dossier_apercu', args
=(d
.id,)),
404 _apercu
.allow_tags
= True
405 _apercu
.short_description
= u
""
409 dossiers_dae
= d
.dossiers_dae
.all()
410 if len(dossiers_dae
) > 0:
411 dossier_dae
= dossiers_dae
[0]
412 apercu_link
= u
"""<a title="Aperçu du dossier"
413 onclick="return showAddAnotherPopup(this);"
415 <img src="%simg/loupe.png" />
417 (reverse('embauche_consulter', args
=(dossier_dae
.id,)),
421 _dae
.allow_tags
= True
422 _dae
.short_description
= u
"DAE"
424 def _date_debut(self
, obj
):
425 return date(obj
.date_debut
)
427 _date_debut
.short_description
= u
'Occupation début'
428 _date_debut
.admin_order_field
= 'date_debut'
430 def _date_fin(self
, obj
):
431 return date(obj
.date_fin
)
432 _date_fin
.short_description
= u
'Occupation fin'
433 _date_fin
.admin_order_field
= 'date_fin'
435 def _date_modification(self
, obj
):
436 return date(obj
.date_modification
) \
437 if obj
.date_modification
is not None else "(aucune)"
438 _date_modification
.short_description
= u
'date modification'
439 _date_modification
.admin_order_field
= 'date_modification'
441 def _poste(self
, dossier
):
442 link
= u
"""<a title="Aperçu du poste"
443 onclick="return showAddAnotherPopup(this);"
444 href='%s'><img src="%simg/loupe.png" />
446 <a href="%s" title="Modifier le poste">%s</a>""" % \
447 (reverse('poste_apercu', args
=(dossier
.poste
.id,)),
449 reverse('admin:rh_poste_change', args
=(dossier
.poste
.id,)),
453 _poste
.allow_tags
= True
454 _poste
.short_description
= u
'Poste'
455 _poste
.admin_order_field
= 'poste__nom'
457 def _employe(self
, obj
):
458 employe
= obj
.employe
459 view_link
= reverse('employe_apercu', args
=(employe
.id,))
460 edit_link
= reverse('admin:rh_employe_change', args
=(employe
.id,))
463 view
= u
"""<a href="%s"
464 title="Aperçu l'employé"
465 onclick="return showAddAnotherPopup(this);">
466 <img src="%simg/loupe.png" />
467 </a>""" % (view_link
, settings
.STATIC_URL
,)
468 return u
"""%s<a href='%s' style="%s;">%s</a>""" % \
469 (view
, edit_link
, style
, employe
)
470 _employe
.allow_tags
= True
471 _employe
.short_description
= u
"Employé"
472 _employe
.admin_order_field
= "employe__nom"
474 def save_formset(self
, request
, form
, formset
, change
):
475 instances
= formset
.save(commit
=False)
476 for instance
in instances
:
477 if instance
.__class__
== rh
.DossierCommentaire
:
478 instance
.owner
= request
.user
479 instance
.date_creation
= datetime
.datetime
.now()
483 class DossierPieceAdmin(admin
.ModelAdmin
):
487 class DossierCommentaireAdmin(admin
.ModelAdmin
):
491 class EmployeAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
492 ProtectRegionMixin
, admin
.ModelAdmin
,):
493 prefixe_recherche_temporelle
= "rh_dossiers__"
494 alphabet_filter
= 'nom'
495 DEFAULT_ALPHABET
= u
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
497 'id', 'nom', 'prenom', 'nom_affichage',
498 'rh_dossiers__poste__nom',
499 'rh_dossiers__poste__nom_feminin'
502 form
= EmployeAdminForm
508 '_date_modification',
511 list_display_links
= ('_nom',)
513 'rh_dossiers__poste__implantation__region',
514 'rh_dossiers__poste__implantation',
517 inlines
= (AyantDroitInline
,
520 EmployeCommentaireInline
)
521 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
525 ('nom_affichage', 'genre'),
530 ('Informations personnelles', {
531 'fields': ('situation_famille', 'date_entree', )}
533 ('Coordonnées personnelles', {
535 ('tel_domicile', 'tel_cellulaire'),
536 ('adresse', 'ville'),
537 ('code_postal', 'province'),
544 def _apercu(self
, obj
):
545 return u
"""<a title="Aperçu de l'employé"
546 onclick="return showAddAnotherPopup(this);"
548 <img src="%simg/loupe.png" />
550 (reverse('employe_apercu', args
=(obj
.id,)), settings
.STATIC_URL
)
551 _apercu
.allow_tags
= True
552 _apercu
.short_description
= u
""
555 edit_link
= reverse('admin:rh_employe_change', args
=(obj
.id,))
556 return u
"""<a href='%s'><strong>%s</strong></a>""" % \
557 (edit_link
, "%s %s" % (obj
.nom
.upper(), obj
.prenom
))
558 _nom
.allow_tags
= True
559 _nom
.short_description
= u
"Employé"
560 _nom
.admin_order_field
= "nom"
564 _id
.short_description
= u
"#"
565 _id
.admin_order_field
= "id"
567 def _date_modification(self
, obj
):
568 return date(obj
.date_modification
) \
569 if obj
.date_modification
is not None else "(aucune)"
570 _date_modification
.short_description
= u
'date modification'
571 _date_modification
.admin_order_field
= 'date_modification'
573 def _dossiers_postes(self
, obj
):
575 for d
in obj
.rh_dossiers
.all().order_by('-date_debut'):
576 dossier
= u
"""<a title="Aperçu du dossier"
578 onclick="return showAddAnotherPopup(this);"
579 title="Aperçu du dossier">
580 <img src="%simg/loupe.png" />
582 <a href="%s">Dossier</a>
584 (reverse('dossier_apercu', args
=(d
.id,)),
586 reverse('admin:rh_dossier_change', args
=(d
.id,)))
588 poste
= u
"""<a title="Aperçu du poste"
590 onclick="return showAddAnotherPopup(this);"
591 title="Aperçu du poste">
592 <img src="%simg/loupe.png" />
594 <a href="%s">Poste</a>
596 (reverse('poste_apercu', args
=(d
.poste
.id,)),
598 reverse('admin:rh_poste_change', args
=(d
.poste
.id,)))
599 link
= u
"""<li>%s %s - %s : [%s] %s</li>""" % \
606 # Dossier terminé en gris non cliquable
607 if d
.date_fin
is not None and d
.date_fin
< datetime
.date
.today():
608 link
= u
"""<li style="color: grey">%s : [%s] %s</li>""" % \
615 return "<ul>%s</ul>" % "\n".join(l
)
616 _dossiers_postes
.allow_tags
= True
617 _dossiers_postes
.short_description
= u
"Dossiers et postes"
619 def queryset(self
, request
):
620 qs
= super(EmployeAdmin
, self
).queryset(request
)
621 return qs
.select_related(depth
=1).order_by('nom')
623 def save_formset(self
, request
, form
, formset
, change
):
624 instances
= formset
.save(commit
=False)
625 for instance
in instances
:
626 if instance
.__class__
== rh
.EmployeCommentaire
:
627 instance
.owner
= request
.user
628 instance
.date_creation
= datetime
.datetime
.now()
632 class EmployeProxyAdmin(EmployeAdmin
):
633 list_display
= ('_id', '_apercu', '_nom', '_organigramme')
636 def __init__(self
, *args
, **kwargs
):
637 super(EmployeProxyAdmin
, self
).__init__(*args
, **kwargs
)
638 self
.list_display_links
= (None, )
640 def has_add_permission(self
, obj
):
643 def _organigramme(self
, obj
):
645 for d
in rh
.Dossier
.objects
.filter(
646 Q(date_fin__gt
=datetime
.date
.today()) |
Q(date_fin
=None),
647 Q(date_debut__lt
=datetime
.date
.today()) |
Q(date_debut
=None),
651 u
'Organigramme, niveau: ' \
652 u
'<input type="text" id="level_%s" ' \
653 u
'style="width:30px;height:15px;" /> ' \
654 u
'<input type="button" value="Générer" ' \
655 u
"""onclick="window.location='%s' + """ \
656 u
"""document.getElementById('level_%s').value" />""" % (
658 reverse('rho_employe_sans_niveau', args
=(d
.poste
.id,)),
661 link
= u
"""<li>%s - [%s] %s : %s</li>""" % (
668 return "<ul>%s</ul>" % "\n".join(l
)
670 _organigramme
.allow_tags
= True
671 _organigramme
.short_description
= "Organigramme"
674 class EmployeCommentaireAdmin(admin
.ModelAdmin
):
678 class EmployePieceAdmin(admin
.ModelAdmin
):
682 class CategorieEmploiAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
683 list_display
= ('nom', '_date_modification', 'user_modification', )
684 inlines
= (TypePosteInline
,)
685 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
686 (None, {'fields': ('nom', )}),)
688 def _date_modification(self
, obj
):
689 return date(obj
.date_modification
) \
690 if obj
.date_modification
is not None else "(aucune)"
691 _date_modification
.short_description
= u
'date modification'
692 _date_modification
.admin_order_field
= 'date_modification'
695 class OrganismeBstgAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
696 search_fields
= ('nom',)
701 '_date_modification',
704 list_filter
= ('type', )
705 inlines
= (DossierROInline
,)
706 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
707 (None, {'fields': ('nom', 'type', 'pays',)}),
710 def _date_modification(self
, obj
):
711 return date(obj
.date_modification
) \
712 if obj
.date_modification
is not None else "(aucune)"
713 _date_modification
.short_description
= u
'date modification'
714 _date_modification
.admin_order_field
= 'date_modification'
717 class PosteAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
718 ProtectRegionMixin
, admin
.ModelAdmin
, AjaxSelect
,):
719 form
= make_ajax_form(rh
.Poste
, {
720 'implantation': 'implantations',
721 'type_poste': 'typepostes',
722 'responsable': 'postes',
723 'valeur_point_min': 'valeurpoints',
724 'valeur_point_max': 'valeurpoints',
726 alphabet_filter
= 'nom'
731 'implantation__region__code',
732 'implantation__region__nom',
733 'rh_dossiers__employe__nom',
734 'rh_dossiers__employe__prenom',
746 '_date_modification',
751 'implantation__region',
755 'type_poste__categorie_emploi',
756 'type_poste__famille_professionnelle',
759 list_display_links
= ('_nom',)
760 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
762 ('nom', 'nom_feminin'),
772 'regime_travail_nb_heure_semaine'),
776 'fields': (('local', 'expatrie', 'mise_a_disposition', 'appel'),)}
779 'fields': (('classement_min',
792 ('Comparatifs de rémunération', {
793 'fields': ('devise_comparaison',
794 ('comp_locale_min', 'comp_locale_max'),
795 ('comp_universite_min', 'comp_universite_max'),
796 ('comp_fonctionpub_min', 'comp_fonctionpub_max'),
797 ('comp_ong_min', 'comp_ong_max'),
798 ('comp_autre_min', 'comp_autre_max'))}
801 'fields': ('justification',)}
803 ('Autres Méta-données', {
804 'fields': ('date_debut', 'date_fin')}
808 inlines
= (PosteFinancementInline
,
811 PosteComparaisonInline
,
812 PosteCommentaireInline
, )
814 def lookup_allowed(self
, key
, value
):
816 'date_debut__gte', 'date_debut__isnull', 'date_fin__lte',
817 'date_fin__isnull', 'implantation__region__id__exact',
818 'implantation__id__exact', 'type_poste__id__exact',
819 'type_poste__categorie_emploi__id__exact', 'service__id__exact',
820 'service__isnull', 'vacant__exact', 'vacant__isnull',
821 ) or super(PosteAdmin
, self
).lookup_allowed(key
, value
)
823 def _apercu(self
, poste
):
824 view_link
= u
"""<a onclick="return showAddAnotherPopup(this);"
825 title="Aperçu du poste"
827 <img src="%simg/loupe.png" />
829 (reverse('poste_apercu', args
=(poste
.id,)),
830 settings
.STATIC_URL
,)
832 _apercu
.allow_tags
= True
833 _apercu
.short_description
= ''
835 def _dae(self
, poste
):
837 postes_dae
= poste
.postes_dae
.all()
838 if len(postes_dae
) > 0:
839 poste_dae
= postes_dae
[0]
841 u
'<a title="Aperçu du dossier" href="%s" ' \
842 u
'onclick="return showAddAnotherPopup(this);">' \
843 u
'<img src="%simg/loupe.png" /></a>' % (reverse(
844 'poste_consulter', args
=("dae-%s" % poste_dae
.id,)
845 ), settings
.STATIC_URL
)
847 _dae
.allow_tags
= True
848 _dae
.short_description
= u
"DAE"
852 _id
.short_description
= '#'
853 _id
.admin_order_field
= 'id'
855 def _service(self
, obj
):
856 if obj
.service
.supprime
:
857 return """<span style="color:red">%s</span>""" % obj
.service
860 _service
.short_description
= 'Service'
861 _service
.allow_tags
= True
863 def _responsable(self
, obj
):
865 responsable
= u
"""<a href="%s"
866 onclick="return showAddAnotherPopup(this)">
867 <img src="%simg/loupe.png"
868 title="Aperçu du poste" />
872 (reverse('poste_apercu', args
=(obj
.responsable
.id,)),
874 reverse('admin:rh_poste_change', args
=(obj
.responsable
.id,)),
880 employe
= obj
.responsable
.rh_dossiers
.all()[0]
881 employe_id
= obj
.responsable
.rh_dossiers
.all()[0].id
882 employe_html
= u
"""<br />
884 onclick="return showAddAnotherPopup(this)">
885 <img src="%simg/loupe.png"
886 title="Aperçu de l'employé">
888 <a href="%s">%s</a>""" % \
889 (reverse('employe_apercu', args
=(employe_id
,)),
891 reverse('admin:rh_employe_change', args
=(employe_id
,)),
896 return "%s %s" % (responsable
, employe_html
)
897 _responsable
.short_description
= 'Responsable'
898 _responsable
.allow_tags
= True
900 def _nom(self
, poste
):
901 return """<a href="%s">%s</a>""" % \
902 (reverse('admin:rh_poste_change', args
=(poste
.id,)),
904 _nom
.allow_tags
= True
905 _nom
.short_description
= u
'Nom'
906 _nom
.admin_order_field
= 'nom'
908 def _date_modification(self
, obj
):
909 return date(obj
.date_modification
)
910 _date_modification
.short_description
= u
'date modification'
911 _date_modification
.admin_order_field
= 'date_modification'
913 def _occupe_par(self
, obj
):
914 """Formatte la méthode Poste.occupe_par() pour l'admin"""
916 if obj
.date_fin
is not None and obj
.date_fin
< datetime
.date
.today():
918 employes
= obj
.occupe_par()
922 link
= u
"""<a href='%s'
923 title='Aperçu de l\'employer'
924 onclick='return showAddAnotherPopup(this)'>
925 <img src='%simg/loupe.png' />
927 <a href='%s'>%s</a>""" % \
928 (reverse('employe_apercu', args
=(e
.id,)),
930 reverse('admin:rh_employe_change', args
=(e
.id,)),
933 output
= "\n<br />".join(l
)
935 _occupe_par
.allow_tags
= True
936 _occupe_par
.short_description
= "Occupé par"
938 def save_formset(self
, request
, form
, formset
, change
):
939 instances
= formset
.save(commit
=False)
940 for instance
in instances
:
941 if instance
.__class__
== rh
.PosteCommentaire
:
942 instance
.owner
= request
.user
943 instance
.date_creation
= datetime
.datetime
.now()
948 class PosteCommentaireAdmin(admin
.ModelAdmin
):
952 class PosteFinancementAdmin(admin
.ModelAdmin
):
956 class PostePieceAdmin(admin
.ModelAdmin
):
960 class RemunerationAdmin(admin
.ModelAdmin
):
964 class ResponsableInline(admin
.TabularInline
):
965 model
= rh
.ResponsableImplantation
967 fk_name
= "implantation"
970 class ResponsableImplantationAdmin(admin
.ModelAdmin
):
972 list_filter
= ('region', 'statut', )
973 list_display
= ('nom', 'statut', '_responsable', )
974 readonly_fields
= ('nom', )
976 inlines
= (ResponsableInline
, )
978 def _responsable(self
, obj
):
980 employe
= obj
.responsable
.employe
981 dossiers
= employe
.dossiers_encours()
982 if len(dossiers
) == 0:
983 return u
"<span style='color: red;'>%s %s </span>" % (
984 employe
, u
"sans dossier actif")
988 if obj
.statut
in (1, 2): # ouverte, ouverture imminente
989 css
= "style='color: red;'"
992 return u
"<span %s>Pas de responsable</span>" % css
993 _responsable
.allow_tags
= True
994 _responsable
.short_description
= u
"Responsable"
996 def has_add_permission(self
, request
=None):
999 def has_change_permission(self
, request
, obj
=None):
1000 return in_drh_or_admin(request
.user
)
1002 def has_delete_permission(self
, request
, obj
=None):
1006 class ServiceAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
, ArchiveMixin
):
1010 '_date_modification',
1011 'user_modification',
1013 list_filter
= ('archive', )
1014 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1016 'fields': ('nom', 'archive', ),
1020 def _date_modification(self
, obj
):
1021 return date(obj
.date_modification
) \
1022 if obj
.date_modification
is not None else "(aucune)"
1023 _date_modification
.short_description
= u
'date modification'
1024 _date_modification
.admin_order_field
= 'date_modification'
1027 class ServiceProxyAdmin(ServiceAdmin
):
1028 list_display
= ('nom', '_organigramme', '_archive', )
1031 def __init__(self
, *args
, **kwargs
):
1032 super(ServiceProxyAdmin
, self
).__init__(*args
, **kwargs
)
1033 self
.list_display_links
= (None, )
1035 def queryset(self
, request
):
1036 return super(ServiceProxyAdmin
, self
).queryset(request
) \
1037 .annotate(num_postes
=Count('rh_postes')) \
1038 .filter(num_postes__gt
=0)
1040 def has_add_permission(self
, obj
):
1043 def has_change_permission(self
, request
, obj
=None):
1044 return in_drh_or_admin(request
.user
)
1046 def _organigramme(self
, obj
):
1047 return """<a href="%s"><strong>Organigramme</strong></a>""" % \
1048 (reverse('rho_service', args
=(obj
.id,)))
1049 _organigramme
.allow_tags
= True
1050 _organigramme
.short_description
= "Organigramme"
1053 class StatutAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1054 list_display
= ('code', 'nom', '_date_modification', 'user_modification', )
1055 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1057 'fields': ('code', 'nom', ),
1061 def _date_modification(self
, obj
):
1062 return date(obj
.date_modification
) \
1063 if obj
.date_modification
is not None else "(aucune)"
1064 _date_modification
.short_description
= u
'date modification'
1065 _date_modification
.admin_order_field
= 'date_modification'
1068 class TauxChangeAdmin(admin
.ModelAdmin
):
1073 '_date_modification',
1074 'user_modification',
1076 list_filter
= ('devise', )
1077 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1079 'fields': ('taux', 'devise', 'annee', ),
1083 def _date_modification(self
, obj
):
1084 return date(obj
.date_modification
) \
1085 if obj
.date_modification
is not None else "(aucune)"
1086 _date_modification
.short_description
= u
'date modification'
1087 _date_modification
.admin_order_field
= 'date_modification'
1090 class TypeContratAdmin(admin
.ModelAdmin
):
1094 '_date_modification',
1095 'user_modification',
1097 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1099 'fields': ('nom', 'nom_long', ),
1103 def _date_modification(self
, obj
):
1104 return date(obj
.date_modification
) \
1105 if obj
.date_modification
is not None else "(aucune)"
1106 _date_modification
.short_description
= u
'date modification'
1107 _date_modification
.admin_order_field
= 'date_modification'
1110 class TypePosteAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1111 search_fields
= ('nom', 'nom_feminin', )
1115 '_date_modification',
1116 'user_modification',
1118 list_filter
= ('categorie_emploi', 'famille_professionnelle')
1119 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1126 'famille_professionnelle',
1131 def _date_modification(self
, obj
):
1132 return date(obj
.date_modification
) \
1133 if obj
.date_modification
is not None else "(aucune)"
1134 _date_modification
.short_description
= u
'date modification'
1135 _date_modification
.admin_order_field
= 'date_modification'
1138 class TypeRemunerationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
,
1143 'nature_remuneration',
1145 '_date_modification',
1146 'user_modification',)
1147 list_filter
= ('archive', )
1148 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1149 (None, {'fields': ('nom', 'type_paiement', 'nature_remuneration',
1153 def _date_modification(self
, obj
):
1154 return date(obj
.date_modification
) \
1155 if obj
.date_modification
is not None else "(aucune)"
1156 _date_modification
.short_description
= u
'date modification'
1157 _date_modification
.admin_order_field
= 'date_modification'
1160 class TypeRevalorisationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1161 list_display
= ('nom', '_date_modification', 'user_modification', )
1162 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1163 (None, {'fields': ('nom', )}),
1166 def _date_modification(self
, obj
):
1167 return date(obj
.date_modification
) \
1168 if obj
.date_modification
is not None else "(aucune)"
1169 _date_modification
.short_description
= u
'date modification'
1170 _date_modification
.admin_order_field
= 'date_modification'
1173 class ValeurPointAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1180 '_date_modification',
1181 'user_modification',
1183 list_filter
= ('annee', 'devise', 'implantation__region', )
1184 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1185 (None, {'fields': ('valeur', 'devise', 'implantation', 'annee', )}),
1188 def _date_modification(self
, obj
):
1189 return date(obj
.date_modification
) \
1190 if obj
.date_modification
is not None else "(aucune)"
1191 _date_modification
.short_description
= u
'date modification'
1192 _date_modification
.admin_order_field
= 'date_modification'
1194 def _devise_code(self
, obj
):
1195 return obj
.devise
.code
1196 _devise_code
.short_description
= "Code de la devise"
1198 def _devise_nom(self
, obj
):
1199 return obj
.devise
.nom
1200 _devise_nom
.short_description
= "Nom de la devise"
1203 class ImplantationProxyAdmin(admin
.ModelAdmin
):
1204 list_display
= ('nom', '_organigramme')
1207 def __init__(self
, *args
, **kwargs
):
1208 super(ImplantationProxyAdmin
, self
).__init__(*args
, **kwargs
)
1209 self
.list_display_links
= (None, )
1211 def has_add_permission(self
, obj
):
1214 def has_change_permission(self
, request
, obj
=None):
1215 return in_drh_or_admin(request
.user
)
1217 def _organigramme(self
, obj
):
1218 return '<a href="%s"><strong>Organigramme</strong></a>' % (
1219 reverse('rho_implantation', args
=(obj
.id,))
1221 _organigramme
.allow_tags
= True
1222 _organigramme
.short_description
= "Organigramme"
1225 class RegionProxyAdmin(admin
.ModelAdmin
):
1226 list_display
= ('nom', '_organigramme')
1229 def __init__(self
, *args
, **kwargs
):
1230 super(RegionProxyAdmin
, self
).__init__(*args
, **kwargs
)
1231 self
.list_display_links
= (None, )
1233 def has_add_permission(self
, obj
):
1236 def has_change_permission(self
, request
, obj
=None):
1237 return in_drh_or_admin(request
.user
)
1239 def _organigramme(self
, obj
):
1240 return """<a href="%s"><strong>Organigramme</strong></a>""" % (
1241 reverse('rho_region', args
=(obj
.id,))
1243 _organigramme
.allow_tags
= True
1244 _organigramme
.short_description
= "Organigramme"
1247 admin
.site
.register(rh
.Classement
, ClassementAdmin
)
1248 admin
.site
.register(rh
.Devise
, DeviseAdmin
)
1249 admin
.site
.register(rh
.Dossier
, DossierAdmin
)
1250 admin
.site
.register(EmployeProxy
, EmployeProxyAdmin
)
1251 admin
.site
.register(ServiceProxy
, ServiceProxyAdmin
)
1252 admin
.site
.register(rh
.Employe
, EmployeAdmin
)
1253 admin
.site
.register(rh
.CategorieEmploi
, CategorieEmploiAdmin
)
1254 admin
.site
.register(rh
.FamilleProfessionnelle
)
1255 admin
.site
.register(rh
.OrganismeBstg
, OrganismeBstgAdmin
)
1256 admin
.site
.register(rh
.Poste
, PosteAdmin
)
1257 admin
.site
.register(
1258 rh
.ResponsableImplantationProxy
, ResponsableImplantationAdmin
1260 admin
.site
.register(rh
.Service
, ServiceAdmin
)
1261 admin
.site
.register(rh
.Statut
, StatutAdmin
)
1262 admin
.site
.register(rh
.TauxChange
, TauxChangeAdmin
)
1263 admin
.site
.register(rh
.TypeContrat
, TypeContratAdmin
)
1264 admin
.site
.register(rh
.TypePoste
, TypePosteAdmin
)
1265 admin
.site
.register(rh
.TypeRemuneration
, TypeRemunerationAdmin
)
1266 admin
.site
.register(rh
.TypeRevalorisation
, TypeRevalorisationAdmin
)
1267 admin
.site
.register(rh
.ValeurPoint
, ValeurPointAdmin
)
1268 admin
.site
.register(ImplantationProxy
, ImplantationProxyAdmin
)
1269 admin
.site
.register(RegionProxy
, RegionProxyAdmin
)