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
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 """
63 verbose_name
= u
"Organigramme par services"
64 verbose_name_plural
= u
"Organigramme par services"
67 class EmployeProxy(rh
.Employe
):
68 """ Proxy utilisé pour les organigrammes des employés """
71 verbose_name
= u
"Organigramme des employés"
72 verbose_name_plural
= u
"Organigramme des employés"
75 class DateRangeMixin(object):
76 prefixe_recherche_temporelle
= ""
78 def get_changelist(self
, request
, **kwargs
):
79 if 'HTTP_REFERER' in request
.META
.keys():
80 referer
= request
.META
['HTTP_REFERER']
81 referer
= "/".join(referer
.split('/')[3:])
82 referer
= "/%s" % referer
.split('?')[0]
83 change_list_view
= 'admin:%s_%s_changelist' % (
84 self
.model
._meta
.app_label
,
85 self
.model
.__name__
.lower(),)
86 if referer
!= reverse(change_list_view
):
87 params
= request
.GET
.copy()
88 params
.update({'statut': 'Actif'})
93 # Override of the InlineModelAdmin to support the link in the tabular inline
94 class LinkedInline(admin
.options
.InlineModelAdmin
):
95 template
= "admin/linked.html"
96 admin_model_path
= None
98 def __init__(self
, *args
):
99 super(LinkedInline
, self
).__init__(*args
)
100 if self
.admin_model_path
is None:
101 self
.admin_model_path
= self
.model
.__name__
.lower()
104 class ProtectRegionMixin(object):
106 def queryset(self
, request
):
107 qs
= super(ProtectRegionMixin
, self
).queryset(request
)
109 user_groups
= request
.user
.groups
.all()
110 if in_drh_or_admin(request
.user
):
113 if grp_correspondants_rh
in user_groups
:
114 employe
= get_employe_from_user(request
.user
)
115 q
= Q(**{self
.model
.prefix_implantation
: \
116 employe
.implantation
.region
})
117 qs
= qs
.filter(q
).distinct()
121 def has_add_permission(self
, request
):
122 if not in_drh_or_admin(request
.user
):
127 def has_change_permission(self
, request
, obj
=None):
128 user_groups
= request
.user
.groups
.all()
130 # Lock pour autoriser uniquement les DRH à utiliser RH
131 if not in_drh_or_admin(request
.user
):
134 if len(user_groups
) == 0 and not request
.user
.is_superuser
:
139 ids
= [o
.id for o
in self
.queryset(request
)]
145 class ReadOnlyInlineMixin(object):
147 def get_readonly_fields(self
, request
, obj
=None):
148 return [f
.name
for f
in self
.model
._meta
.fields \
149 if f
.name
not in AUF_METADATA_READONLY_FIELDS
]
152 class AyantDroitInline(AUFMetadataInlineAdminMixin
, admin
.StackedInline
):
153 model
= rh
.AyantDroit
154 form
= AyantDroitForm
161 ('nom_affichage', 'genre'),
169 class AyantDroitCommentaireInline(AUFMetadataInlineAdminMixin
, \
170 admin
.TabularInline
):
171 readonly_fields
= ('owner', )
172 model
= rh
.AyantDroitCommentaire
176 class ContratInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
182 class DossierROInline(ReadOnlyInlineMixin
, LinkedInline
):
183 template
= "admin/rh/dossier/linked.html"
184 exclude
= AUF_METADATA_READONLY_FIELDS
189 def has_add_permission(self
, request
=None):
192 def has_change_permission(self
, request
, obj
=None):
195 def has_delete_permission(self
, request
, obj
=None):
199 class DossierCommentaireInline(AUFMetadataInlineAdminMixin
, \
200 admin
.TabularInline
):
201 readonly_fields
= ('owner', )
202 model
= rh
.DossierCommentaire
206 class DossierPieceInline(admin
.TabularInline
):
207 model
= rh
.DossierPiece
211 class EmployeInline(admin
.TabularInline
):
215 class EmployeCommentaireInline(AUFMetadataInlineAdminMixin
, \
216 admin
.TabularInline
):
217 readonly_fields
= ('owner', )
218 model
= rh
.EmployeCommentaire
222 class EmployePieceInline(admin
.TabularInline
):
223 model
= rh
.EmployePiece
227 class PosteCommentaireInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
228 readonly_fields
= ('owner', )
229 model
= rh
.PosteCommentaire
233 class PosteFinancementInline(admin
.TabularInline
):
234 model
= rh
.PosteFinancement
237 class PostePieceInline(admin
.TabularInline
):
238 model
= rh
.PostePiece
241 class RemunerationInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
242 model
= rh
.Remuneration
246 class RemunerationROInline(ReadOnlyInlineMixin
, RemunerationInline
):
250 class TypePosteInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
254 class PosteComparaisonInline(AUFMetadataInlineAdminMixin
, admin
.TabularInline
):
255 model
= rh
.PosteComparaison
258 class ClassementAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
259 list_display
= ('_classement', '_date_modification', 'user_modification', )
260 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
262 'fields': ('type', 'echelon', 'degre', 'coefficient',)}),
265 def _classement(self
, obj
):
267 _classement
.short_description
= u
"Classement"
269 def _date_modification(self
, obj
):
270 return date(obj
.date_modification
) \
271 if obj
.date_modification
is not None else "(aucune)"
272 _date_modification
.short_description
= u
'date modification'
273 _date_modification
.admin_order_field
= 'date_modification'
276 class CommentaireAdmin(admin
.ModelAdmin
):
280 class DeviseAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
, ArchiveMixin
):
285 '_date_modification',
288 list_filter
= ('archive', )
289 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
291 'fields': ('code', 'nom', 'archive', ),
295 def _date_modification(self
, obj
):
296 return date(obj
.date_modification
) \
297 if obj
.date_modification
is not None else "(aucune)"
298 _date_modification
.short_description
= u
'date modification'
299 _date_modification
.admin_order_field
= 'date_modification'
302 class DossierAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
303 ProtectRegionMixin
, admin
.ModelAdmin
, AjaxSelect
,):
304 alphabet_filter
= 'employe__nom'
309 'poste__nom_feminin')
318 '_date_modification',
322 list_display_links
= ('_nom',)
324 'poste__implantation__region',
325 'poste__implantation',
326 'poste__type_poste__categorie_emploi',
328 'rh_contrats__type_contrat',
331 inlines
= (DossierPieceInline
, ContratInline
,
333 DossierCommentaireInline
,
335 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
342 'organisme_bstg',)}),
347 'remplacement_de', )}),
351 ('regime_travail', 'regime_travail_nb_heure_semaine'),)}),
352 ('Occupation du Poste par cet Employe', {
353 'fields': (('date_debut', 'date_fin'), )}
356 form
= make_ajax_form(rh
.Dossier
, {
357 'employe': 'employes',
359 'remplacement_de': 'dossiers',
360 }, superclass
=DossierForm
)
362 def lookup_allowed(self
, key
, value
):
364 'employe__nom__istartswith',
365 'poste__implantation__region__id__exact',
366 'poste__implantation__id__exact',
367 'poste__type_poste__id__exact',
368 'poste__type_poste__categorie_emploi__id__exact',
369 'rh_contrats__type_contrat__id__exact',
377 _id
.short_description
= u
"#"
378 _id
.admin_order_field
= "id"
381 return "%d : %s %s" % (
383 obj
.employe
.nom
.upper(),
385 _nom
.allow_tags
= True
386 _nom
.short_description
= u
"Dossier"
388 def _apercu(self
, d
):
389 apercu_link
= u
"""<a title="Aperçu du dossier"
390 onclick="return showAddAnotherPopup(this);"
392 <img src="%simg/loupe.png" />
394 (reverse('dossier_apercu', args
=(d
.id,)),
398 _apercu
.allow_tags
= True
399 _apercu
.short_description
= u
""
403 dossiers_dae
= d
.dossiers_dae
.all()
404 if len(dossiers_dae
) > 0:
405 dossier_dae
= dossiers_dae
[0]
406 apercu_link
= u
"""<a title="Aperçu du dossier"
407 onclick="return showAddAnotherPopup(this);"
409 <img src="%simg/loupe.png" />
411 (reverse('embauche_consulter', args
=(dossier_dae
.id,)),
415 _dae
.allow_tags
= True
416 _dae
.short_description
= u
"DAE"
418 def _date_debut(self
, obj
):
419 return date(obj
.date_debut
)
421 _date_debut
.short_description
= u
'Occupation début'
422 _date_debut
.admin_order_field
= 'date_debut'
424 def _date_fin(self
, obj
):
425 return date(obj
.date_fin
)
426 _date_fin
.short_description
= u
'Occupation fin'
427 _date_fin
.admin_order_field
= 'date_fin'
429 def _date_modification(self
, obj
):
430 return date(obj
.date_modification
) \
431 if obj
.date_modification
is not None else "(aucune)"
432 _date_modification
.short_description
= u
'date modification'
433 _date_modification
.admin_order_field
= 'date_modification'
435 def _poste(self
, dossier
):
436 link
= u
"""<a title="Aperçu du poste"
437 onclick="return showAddAnotherPopup(this);"
438 href='%s'><img src="%simg/loupe.png" />
440 <a href="%s" title="Modifier le poste">%s</a>""" % \
441 (reverse('poste_apercu', args
=(dossier
.poste
.id,)),
443 reverse('admin:rh_poste_change', args
=(dossier
.poste
.id,)),
447 _poste
.allow_tags
= True
448 _poste
.short_description
= u
'Poste'
449 _poste
.admin_order_field
= 'poste__nom'
451 def _employe(self
, obj
):
452 employe
= obj
.employe
453 view_link
= reverse('employe_apercu', args
=(employe
.id,))
454 edit_link
= reverse('admin:rh_employe_change', args
=(employe
.id,))
457 view
= u
"""<a href="%s"
458 title="Aperçu l'employé"
459 onclick="return showAddAnotherPopup(this);">
460 <img src="%simg/loupe.png" />
461 </a>""" % (view_link
, settings
.STATIC_URL
,)
462 return u
"""%s<a href='%s' style="%s;">%s</a>""" % \
463 (view
, edit_link
, style
, employe
)
464 _employe
.allow_tags
= True
465 _employe
.short_description
= u
"Employé"
466 _employe
.admin_order_field
= "employe__nom"
468 def save_formset(self
, request
, form
, formset
, change
):
469 instances
= formset
.save(commit
=False)
470 for instance
in instances
:
471 if instance
.__class__
== rh
.DossierCommentaire
:
472 instance
.owner
= request
.user
473 instance
.date_creation
= datetime
.datetime
.now()
477 class DossierPieceAdmin(admin
.ModelAdmin
):
481 class DossierCommentaireAdmin(admin
.ModelAdmin
):
485 class EmployeAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
486 ProtectRegionMixin
, admin
.ModelAdmin
,):
487 prefixe_recherche_temporelle
= "rh_dossiers__"
488 alphabet_filter
= 'nom'
489 DEFAULT_ALPHABET
= u
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
490 search_fields
= ('id', 'nom', 'prenom', 'nom_affichage', )
492 form
= EmployeAdminForm
498 '_date_modification',
501 list_display_links
= ('_nom',)
503 'rh_dossiers__poste__implantation__region',
504 'rh_dossiers__poste__implantation',
507 inlines
= (AyantDroitInline
,
510 EmployeCommentaireInline
)
511 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
515 ('nom_affichage', 'genre'),
520 ('Informations personnelles', {
521 'fields': ('situation_famille', 'date_entree', )}
525 ('tel_domicile', 'tel_cellulaire'),
526 ('adresse', 'ville'),
527 ('code_postal', 'province'),
533 def _apercu(self
, obj
):
534 return u
"""<a title="Aperçu de l'employé"
535 onclick="return showAddAnotherPopup(this);"
537 <img src="%simg/loupe.png" />
539 (reverse('employe_apercu', args
=(obj
.id,)), settings
.STATIC_URL
)
540 _apercu
.allow_tags
= True
541 _apercu
.short_description
= u
""
544 edit_link
= reverse('admin:rh_employe_change', args
=(obj
.id,))
545 return u
"""<a href='%s'><strong>%s</strong></a>""" % \
546 (edit_link
, "%s %s" % (obj
.nom
.upper(), obj
.prenom
))
547 _nom
.allow_tags
= True
548 _nom
.short_description
= u
"Employé"
549 _nom
.admin_order_field
= "nom"
553 _id
.short_description
= u
"#"
554 _id
.admin_order_field
= "id"
556 def _date_modification(self
, obj
):
557 return date(obj
.date_modification
) \
558 if obj
.date_modification
is not None else "(aucune)"
559 _date_modification
.short_description
= u
'date modification'
560 _date_modification
.admin_order_field
= 'date_modification'
562 def _dossiers_postes(self
, obj
):
564 for d
in obj
.rh_dossiers
.all().order_by('-date_debut'):
565 dossier
= u
"""<a title="Aperçu du dossier"
567 onclick="return showAddAnotherPopup(this);"
568 title="Aperçu du dossier">
569 <img src="%simg/loupe.png" />
571 <a href="%s">Dossier</a>
573 (reverse('dossier_apercu', args
=(d
.id,)),
575 reverse('admin:rh_dossier_change', args
=(d
.id,)))
577 poste
= u
"""<a title="Aperçu du poste"
579 onclick="return showAddAnotherPopup(this);"
580 title="Aperçu du poste">
581 <img src="%simg/loupe.png" />
583 <a href="%s">Poste</a>
585 (reverse('poste_apercu', args
=(d
.poste
.id,)),
587 reverse('admin:rh_poste_change', args
=(d
.poste
.id,)))
588 link
= u
"""<li>%s %s - %s : [%s] %s</li>""" % \
595 # Dossier terminé en gris non cliquable
596 if d
.date_fin
is not None and d
.date_fin
< datetime
.date
.today():
597 link
= u
"""<li style="color: grey">%s : [%s] %s</li>""" % \
604 return "<ul>%s</ul>" % "\n".join(l
)
605 _dossiers_postes
.allow_tags
= True
606 _dossiers_postes
.short_description
= u
"Dossiers et postes"
608 def queryset(self
, request
):
609 qs
= super(EmployeAdmin
, self
).queryset(request
)
610 return qs
.select_related(depth
=1).order_by('nom')
612 def save_formset(self
, request
, form
, formset
, change
):
613 instances
= formset
.save(commit
=False)
614 for instance
in instances
:
615 if instance
.__class__
== rh
.EmployeCommentaire
:
616 instance
.owner
= request
.user
617 instance
.date_creation
= datetime
.datetime
.now()
621 class EmployeProxyAdmin(EmployeAdmin
):
622 list_display
= ('_id', '_apercu', '_nom', '_organigramme')
625 def __init__(self
, *args
, **kwargs
):
626 super(EmployeProxyAdmin
, self
).__init__(*args
, **kwargs
)
627 self
.list_display_links
= (None, )
629 def has_add_permission(self
, obj
):
632 def _organigramme(self
, obj
):
634 for d
in rh
.Dossier
.objects
.filter(
635 Q(date_fin__gt
=datetime
.date
.today()) |
Q(date_fin
=None),
636 Q(date_debut__lt
=datetime
.date
.today()) |
Q(date_debut
=None),
640 u
'Organigramme, niveau: ' \
641 u
'<input type="text" id="level_%s" ' \
642 u
'style="width:30px;height:15px;" /> ' \
643 u
'<input type="button" value="Générer" ' \
644 u
"""onclick="window.location='%s' + """ \
645 u
"""document.getElementById('level_%s').value" />""" % (
647 reverse('rho_employe_sans_niveau', args
=(d
.poste
.id,)),
650 link
= u
"""<li>%s - [%s] %s : %s</li>""" % (
657 return "<ul>%s</ul>" % "\n".join(l
)
659 _organigramme
.allow_tags
= True
660 _organigramme
.short_description
= "Organigramme"
663 class EmployeCommentaireAdmin(admin
.ModelAdmin
):
667 class EmployePieceAdmin(admin
.ModelAdmin
):
671 class CategorieEmploiAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
672 list_display
= ('nom', '_date_modification', 'user_modification', )
673 inlines
= (TypePosteInline
,)
674 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
675 (None, {'fields': ('nom', )}),)
677 def _date_modification(self
, obj
):
678 return date(obj
.date_modification
) \
679 if obj
.date_modification
is not None else "(aucune)"
680 _date_modification
.short_description
= u
'date modification'
681 _date_modification
.admin_order_field
= 'date_modification'
684 class OrganismeBstgAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
685 search_fields
= ('nom',)
690 '_date_modification',
693 list_filter
= ('type', )
694 inlines
= (DossierROInline
,)
695 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
696 (None, {'fields': ('nom', 'type', 'pays',)}),
699 def _date_modification(self
, obj
):
700 return date(obj
.date_modification
) \
701 if obj
.date_modification
is not None else "(aucune)"
702 _date_modification
.short_description
= u
'date modification'
703 _date_modification
.admin_order_field
= 'date_modification'
706 class PosteAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
707 ProtectRegionMixin
, admin
.ModelAdmin
, AjaxSelect
,):
708 form
= make_ajax_form(rh
.Poste
, {
709 'implantation': 'implantations',
710 'type_poste': 'typepostes',
711 'responsable': 'postes',
712 'valeur_point_min': 'valeurpoints',
713 'valeur_point_max': 'valeurpoints',
715 alphabet_filter
= 'nom'
720 'implantation__region__code',
721 'implantation__region__nom',
722 'rh_dossiers__employe__nom',
723 'rh_dossiers__employe__prenom',
735 '_date_modification',
740 'implantation__region',
744 'type_poste__categorie_emploi',
745 'type_poste__famille_professionnelle',
748 list_display_links
= ('_nom',)
749 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
751 ('nom', 'nom_feminin'),
761 'regime_travail_nb_heure_semaine'),
765 'fields': (('local', 'expatrie', 'mise_a_disposition', 'appel'),)}
768 'fields': (('classement_min',
781 ('Comparatifs de rémunération', {
782 'fields': ('devise_comparaison',
783 ('comp_locale_min', 'comp_locale_max'),
784 ('comp_universite_min', 'comp_universite_max'),
785 ('comp_fonctionpub_min', 'comp_fonctionpub_max'),
786 ('comp_ong_min', 'comp_ong_max'),
787 ('comp_autre_min', 'comp_autre_max'))}
790 'fields': ('justification',)}
792 ('Autres Méta-données', {
793 'fields': ('date_debut', 'date_fin')}
797 inlines
= (PosteFinancementInline
,
800 PosteComparaisonInline
,
801 PosteCommentaireInline
, )
803 def lookup_allowed(self
, key
, value
):
805 'date_debut__gte', 'date_debut__isnull', 'date_fin__lte',
806 'date_fin__isnull', 'implantation__region__id__exact',
807 'implantation__id__exact', 'type_poste__id__exact',
808 'type_poste__categorie_emploi__id__exact', 'service__id__exact',
809 'service__isnull', 'vacant__exact', 'vacant__isnull',
810 ) or super(PosteAdmin
, self
).lookup_allowed(key
, value
)
812 def _apercu(self
, poste
):
813 view_link
= u
"""<a onclick="return showAddAnotherPopup(this);"
814 title="Aperçu du poste"
816 <img src="%simg/loupe.png" />
818 (reverse('poste_apercu', args
=(poste
.id,)),
819 settings
.STATIC_URL
,)
821 _apercu
.allow_tags
= True
822 _apercu
.short_description
= ''
824 def _dae(self
, poste
):
826 postes_dae
= poste
.postes_dae
.all()
827 if len(postes_dae
) > 0:
828 poste_dae
= postes_dae
[0]
830 u
'<a title="Aperçu du dossier" href="%s" ' \
831 u
'onclick="return showAddAnotherPopup(this);">' \
832 u
'<img src="%simg/loupe.png" /></a>' % (reverse(
833 'poste_consulter', args
=("dae-%s" % poste_dae
.id,)
834 ), settings
.STATIC_URL
)
836 _dae
.allow_tags
= True
837 _dae
.short_description
= u
"DAE"
841 _id
.short_description
= '#'
842 _id
.admin_order_field
= 'id'
844 def _service(self
, obj
):
845 if obj
.service
.supprime
:
846 return """<span style="color:red">%s</span>""" % obj
.service
849 _service
.short_description
= 'Service'
850 _service
.allow_tags
= True
852 def _responsable(self
, obj
):
854 responsable
= u
"""<a href="%s"
855 onclick="return showAddAnotherPopup(this)">
856 <img src="%simg/loupe.png"
857 title="Aperçu du poste" />
861 (reverse('poste_apercu', args
=(obj
.responsable
.id,)),
863 reverse('admin:rh_poste_change', args
=(obj
.responsable
.id,)),
869 employe
= obj
.responsable
.rh_dossiers
.all()[0]
870 employe_id
= obj
.responsable
.rh_dossiers
.all()[0].id
871 employe_html
= u
"""<br />
873 onclick="return showAddAnotherPopup(this)">
874 <img src="%simg/loupe.png"
875 title="Aperçu de l'employé">
877 <a href="%s">%s</a>""" % \
878 (reverse('employe_apercu', args
=(employe_id
,)),
880 reverse('admin:rh_employe_change', args
=(employe_id
,)),
885 return "%s %s" % (responsable
, employe_html
)
886 _responsable
.short_description
= 'Responsable'
887 _responsable
.allow_tags
= True
889 def _nom(self
, poste
):
890 return """<a href="%s">%s</a>""" % \
891 (reverse('admin:rh_poste_change', args
=(poste
.id,)),
893 _nom
.allow_tags
= True
894 _nom
.short_description
= u
'Nom'
895 _nom
.admin_order_field
= 'nom'
897 def _date_modification(self
, obj
):
898 return date(obj
.date_modification
)
899 _date_modification
.short_description
= u
'date modification'
900 _date_modification
.admin_order_field
= 'date_modification'
902 def _occupe_par(self
, obj
):
903 """Formatte la méthode Poste.occupe_par() pour l'admin"""
905 if obj
.date_fin
is not None and obj
.date_fin
< datetime
.date
.today():
907 employes
= obj
.occupe_par()
911 link
= u
"""<a href='%s'
912 title='Aperçu de l\'employer'
913 onclick='return showAddAnotherPopup(this)'>
914 <img src='%simg/loupe.png' />
916 <a href='%s'>%s</a>""" % \
917 (reverse('employe_apercu', args
=(e
.id,)),
919 reverse('admin:rh_employe_change', args
=(e
.id,)),
922 output
= "\n<br />".join(l
)
924 _occupe_par
.allow_tags
= True
925 _occupe_par
.short_description
= "Occupé par"
927 def save_formset(self
, request
, form
, formset
, change
):
928 instances
= formset
.save(commit
=False)
929 for instance
in instances
:
930 if instance
.__class__
== rh
.PosteCommentaire
:
931 instance
.owner
= request
.user
932 instance
.date_creation
= datetime
.datetime
.now()
937 class PosteCommentaireAdmin(admin
.ModelAdmin
):
941 class PosteFinancementAdmin(admin
.ModelAdmin
):
945 class PostePieceAdmin(admin
.ModelAdmin
):
949 class RemunerationAdmin(admin
.ModelAdmin
):
953 class ResponsableInline(admin
.TabularInline
):
954 model
= rh
.ResponsableImplantation
956 fk_name
= "implantation"
959 class ResponsableImplantationAdmin(admin
.ModelAdmin
):
961 list_filter
= ('region', 'statut', )
962 list_display
= ('nom', 'statut', '_responsable', )
963 readonly_fields
= ('nom', )
965 inlines
= (ResponsableInline
, )
967 def _responsable(self
, obj
):
969 employe
= obj
.responsable
.employe
970 dossiers
= employe
.dossiers_encours()
971 if len(dossiers
) == 0:
972 return u
"<span style='color: red;'>%s %s </span>" % (
973 employe
, u
"sans dossier actif")
977 if obj
.statut
in (1, 2): # ouverte, ouverture imminente
978 css
= "style='color: red;'"
981 return u
"<span %s>Pas de responsable</span>" % css
982 _responsable
.allow_tags
= True
983 _responsable
.short_description
= u
"Responsable"
985 def has_add_permission(self
, request
=None):
988 def has_change_permission(self
, request
, obj
=None):
989 return in_drh_or_admin(request
.user
)
991 def has_delete_permission(self
, request
, obj
=None):
995 class ServiceAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
, ArchiveMixin
):
999 '_date_modification',
1000 'user_modification',
1002 list_filter
= ('archive', )
1003 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1005 'fields': ('nom', 'archive', ),
1009 def _date_modification(self
, obj
):
1010 return date(obj
.date_modification
) \
1011 if obj
.date_modification
is not None else "(aucune)"
1012 _date_modification
.short_description
= u
'date modification'
1013 _date_modification
.admin_order_field
= 'date_modification'
1016 class ServiceProxyAdmin(ServiceAdmin
):
1017 list_display
= ('nom', '_organigramme', '_archive', )
1020 def __init__(self
, *args
, **kwargs
):
1021 super(ServiceProxyAdmin
, self
).__init__(*args
, **kwargs
)
1022 self
.list_display_links
= (None, )
1024 def has_add_permission(self
, obj
):
1027 def has_change_permission(self
, request
, obj
=None):
1028 return in_drh_or_admin(request
.user
)
1030 def _organigramme(self
, obj
):
1031 return """<a href="%s"><strong>Organigramme</strong></a>""" % \
1032 (reverse('rho_service', args
=(obj
.id,)))
1033 _organigramme
.allow_tags
= True
1034 _organigramme
.short_description
= "Organigramme"
1037 class StatutAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1038 list_display
= ('code', 'nom', '_date_modification', 'user_modification', )
1039 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1041 'fields': ('code', 'nom', ),
1045 def _date_modification(self
, obj
):
1046 return date(obj
.date_modification
) \
1047 if obj
.date_modification
is not None else "(aucune)"
1048 _date_modification
.short_description
= u
'date modification'
1049 _date_modification
.admin_order_field
= 'date_modification'
1052 class TauxChangeAdmin(admin
.ModelAdmin
):
1057 '_date_modification',
1058 'user_modification',
1060 list_filter
= ('devise', )
1061 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1063 'fields': ('taux', 'devise', 'annee', ),
1067 def _date_modification(self
, obj
):
1068 return date(obj
.date_modification
) \
1069 if obj
.date_modification
is not None else "(aucune)"
1070 _date_modification
.short_description
= u
'date modification'
1071 _date_modification
.admin_order_field
= 'date_modification'
1074 class TypeContratAdmin(admin
.ModelAdmin
):
1078 '_date_modification',
1079 'user_modification',
1081 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1083 'fields': ('nom', 'nom_long', ),
1087 def _date_modification(self
, obj
):
1088 return date(obj
.date_modification
) \
1089 if obj
.date_modification
is not None else "(aucune)"
1090 _date_modification
.short_description
= u
'date modification'
1091 _date_modification
.admin_order_field
= 'date_modification'
1094 class TypePosteAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1095 search_fields
= ('nom', 'nom_feminin', )
1099 '_date_modification',
1100 'user_modification',
1102 list_filter
= ('categorie_emploi', 'famille_professionnelle')
1103 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1110 'famille_professionnelle',
1115 def _date_modification(self
, obj
):
1116 return date(obj
.date_modification
) \
1117 if obj
.date_modification
is not None else "(aucune)"
1118 _date_modification
.short_description
= u
'date modification'
1119 _date_modification
.admin_order_field
= 'date_modification'
1122 class TypeRemunerationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
,
1127 'nature_remuneration',
1129 '_date_modification',
1130 'user_modification',)
1131 list_filter
= ('archive', )
1132 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1133 (None, {'fields': ('nom', 'type_paiement', 'nature_remuneration',
1137 def _date_modification(self
, obj
):
1138 return date(obj
.date_modification
) \
1139 if obj
.date_modification
is not None else "(aucune)"
1140 _date_modification
.short_description
= u
'date modification'
1141 _date_modification
.admin_order_field
= 'date_modification'
1144 class TypeRevalorisationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1145 list_display
= ('nom', '_date_modification', 'user_modification', )
1146 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1147 (None, {'fields': ('nom', )}),
1150 def _date_modification(self
, obj
):
1151 return date(obj
.date_modification
) \
1152 if obj
.date_modification
is not None else "(aucune)"
1153 _date_modification
.short_description
= u
'date modification'
1154 _date_modification
.admin_order_field
= 'date_modification'
1157 class ValeurPointAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1164 '_date_modification',
1165 'user_modification',
1167 list_filter
= ('annee', 'devise', 'implantation__region', )
1168 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1169 (None, {'fields': ('valeur', 'devise', 'implantation', 'annee', )}),
1172 def _date_modification(self
, obj
):
1173 return date(obj
.date_modification
) \
1174 if obj
.date_modification
is not None else "(aucune)"
1175 _date_modification
.short_description
= u
'date modification'
1176 _date_modification
.admin_order_field
= 'date_modification'
1178 def _devise_code(self
, obj
):
1179 return obj
.devise
.code
1180 _devise_code
.short_description
= "Code de la devise"
1182 def _devise_nom(self
, obj
):
1183 return obj
.devise
.nom
1184 _devise_nom
.short_description
= "Nom de la devise"
1187 class ImplantationProxyAdmin(admin
.ModelAdmin
):
1188 list_display
= ('nom', '_organigramme')
1191 def __init__(self
, *args
, **kwargs
):
1192 super(ImplantationProxyAdmin
, self
).__init__(*args
, **kwargs
)
1193 self
.list_display_links
= (None, )
1195 def has_add_permission(self
, obj
):
1198 def has_change_permission(self
, request
, obj
=None):
1199 return in_drh_or_admin(request
.user
)
1201 def _organigramme(self
, obj
):
1202 return '<a href="%s"><strong>Organigramme</strong></a>' % (
1203 reverse('rho_implantation', args
=(obj
.id,))
1205 _organigramme
.allow_tags
= True
1206 _organigramme
.short_description
= "Organigramme"
1209 class RegionProxyAdmin(admin
.ModelAdmin
):
1210 list_display
= ('nom', '_organigramme')
1213 def __init__(self
, *args
, **kwargs
):
1214 super(RegionProxyAdmin
, self
).__init__(*args
, **kwargs
)
1215 self
.list_display_links
= (None, )
1217 def has_add_permission(self
, obj
):
1220 def has_change_permission(self
, request
, obj
=None):
1221 return in_drh_or_admin(request
.user
)
1223 def _organigramme(self
, obj
):
1224 return """<a href="%s"><strong>Organigramme</strong></a>""" % (
1225 reverse('rho_region', args
=(obj
.id,))
1227 _organigramme
.allow_tags
= True
1228 _organigramme
.short_description
= "Organigramme"
1231 admin
.site
.register(rh
.Classement
, ClassementAdmin
)
1232 admin
.site
.register(rh
.Devise
, DeviseAdmin
)
1233 admin
.site
.register(rh
.Dossier
, DossierAdmin
)
1234 admin
.site
.register(EmployeProxy
, EmployeProxyAdmin
)
1235 admin
.site
.register(ServiceProxy
, ServiceProxyAdmin
)
1236 admin
.site
.register(rh
.Employe
, EmployeAdmin
)
1237 admin
.site
.register(rh
.CategorieEmploi
, CategorieEmploiAdmin
)
1238 admin
.site
.register(rh
.FamilleProfessionnelle
)
1239 admin
.site
.register(rh
.OrganismeBstg
, OrganismeBstgAdmin
)
1240 admin
.site
.register(rh
.Poste
, PosteAdmin
)
1241 admin
.site
.register(
1242 rh
.ResponsableImplantationProxy
, ResponsableImplantationAdmin
1244 admin
.site
.register(rh
.Service
, ServiceAdmin
)
1245 admin
.site
.register(rh
.Statut
, StatutAdmin
)
1246 admin
.site
.register(rh
.TauxChange
, TauxChangeAdmin
)
1247 admin
.site
.register(rh
.TypeContrat
, TypeContratAdmin
)
1248 admin
.site
.register(rh
.TypePoste
, TypePosteAdmin
)
1249 admin
.site
.register(rh
.TypeRemuneration
, TypeRemunerationAdmin
)
1250 admin
.site
.register(rh
.TypeRevalorisation
, TypeRevalorisationAdmin
)
1251 admin
.site
.register(rh
.ValeurPoint
, ValeurPointAdmin
)
1252 admin
.site
.register(ImplantationProxy
, ImplantationProxyAdmin
)
1253 admin
.site
.register(RegionProxy
, RegionProxyAdmin
)