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',
747 list_display_links
= ('_nom',)
748 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
750 ('nom', 'nom_feminin'),
760 'regime_travail_nb_heure_semaine'),
764 'fields': (('local', 'expatrie', 'mise_a_disposition', 'appel'),)}
767 'fields': (('classement_min',
780 ('Comparatifs de rémunération', {
781 'fields': ('devise_comparaison',
782 ('comp_locale_min', 'comp_locale_max'),
783 ('comp_universite_min', 'comp_universite_max'),
784 ('comp_fonctionpub_min', 'comp_fonctionpub_max'),
785 ('comp_ong_min', 'comp_ong_max'),
786 ('comp_autre_min', 'comp_autre_max'))}
789 'fields': ('justification',)}
791 ('Autres Méta-données', {
792 'fields': ('date_debut', 'date_fin')}
796 inlines
= (PosteFinancementInline
,
799 PosteComparaisonInline
,
800 PosteCommentaireInline
, )
802 def lookup_allowed(self
, key
, value
):
805 'date_debut__isnull',
808 'implantation__region__id__exact',
809 'implantation__id__exact',
810 'type_poste__id__exact',
811 'type_poste__categorie_emploi__id__exact',
812 'service__id__exact',
819 def _apercu(self
, poste
):
820 view_link
= u
"""<a onclick="return showAddAnotherPopup(this);"
821 title="Aperçu du poste"
823 <img src="%simg/loupe.png" />
825 (reverse('poste_apercu', args
=(poste
.id,)),
826 settings
.STATIC_URL
,)
828 _apercu
.allow_tags
= True
829 _apercu
.short_description
= ''
831 def _dae(self
, poste
):
833 postes_dae
= poste
.postes_dae
.all()
834 if len(postes_dae
) > 0:
835 poste_dae
= postes_dae
[0]
837 u
'<a title="Aperçu du dossier" href="%s" ' \
838 u
'onclick="return showAddAnotherPopup(this);">' \
839 u
'<img src="%simg/loupe.png" /></a>' % (reverse(
840 'poste_consulter', args
=("dae-%s" % poste_dae
.id,)
841 ), settings
.STATIC_URL
)
843 _dae
.allow_tags
= True
844 _dae
.short_description
= u
"DAE"
848 _id
.short_description
= '#'
849 _id
.admin_order_field
= 'id'
851 def _service(self
, obj
):
852 if obj
.service
.supprime
:
853 return """<span style="color:red">%s</span>""" % obj
.service
856 _service
.short_description
= 'Service'
857 _service
.allow_tags
= True
859 def _responsable(self
, obj
):
861 responsable
= u
"""<a href="%s"
862 onclick="return showAddAnotherPopup(this)">
863 <img src="%simg/loupe.png"
864 title="Aperçu du poste" />
868 (reverse('poste_apercu', args
=(obj
.responsable
.id,)),
870 reverse('admin:rh_poste_change', args
=(obj
.responsable
.id,)),
876 employe
= obj
.responsable
.rh_dossiers
.all()[0]
877 employe_id
= obj
.responsable
.rh_dossiers
.all()[0].id
878 employe_html
= u
"""<br />
880 onclick="return showAddAnotherPopup(this)">
881 <img src="%simg/loupe.png"
882 title="Aperçu de l'employé">
884 <a href="%s">%s</a>""" % \
885 (reverse('employe_apercu', args
=(employe_id
,)),
887 reverse('admin:rh_employe_change', args
=(employe_id
,)),
892 return "%s %s" % (responsable
, employe_html
)
893 _responsable
.short_description
= 'Responsable'
894 _responsable
.allow_tags
= True
896 def _nom(self
, poste
):
897 return """<a href="%s">%s</a>""" % \
898 (reverse('admin:rh_poste_change', args
=(poste
.id,)),
900 _nom
.allow_tags
= True
901 _nom
.short_description
= u
'Nom'
902 _nom
.admin_order_field
= 'nom'
904 def _date_modification(self
, obj
):
905 return date(obj
.date_modification
)
906 _date_modification
.short_description
= u
'date modification'
907 _date_modification
.admin_order_field
= 'date_modification'
909 def _occupe_par(self
, obj
):
910 """Formatte la méthode Poste.occupe_par() pour l'admin"""
912 if obj
.date_fin
is not None and obj
.date_fin
< datetime
.date
.today():
914 employes
= obj
.occupe_par()
918 link
= u
"""<a href='%s'
919 title='Aperçu de l\'employer'
920 onclick='return showAddAnotherPopup(this)'>
921 <img src='%simg/loupe.png' />
923 <a href='%s'>%s</a>""" % \
924 (reverse('employe_apercu', args
=(e
.id,)),
926 reverse('admin:rh_employe_change', args
=(e
.id,)),
929 output
= "\n<br />".join(l
)
931 _occupe_par
.allow_tags
= True
932 _occupe_par
.short_description
= "Occupé par"
934 def save_formset(self
, request
, form
, formset
, change
):
935 instances
= formset
.save(commit
=False)
936 for instance
in instances
:
937 if instance
.__class__
== rh
.PosteCommentaire
:
938 instance
.owner
= request
.user
939 instance
.date_creation
= datetime
.datetime
.now()
944 class PosteCommentaireAdmin(admin
.ModelAdmin
):
948 class PosteFinancementAdmin(admin
.ModelAdmin
):
952 class PostePieceAdmin(admin
.ModelAdmin
):
956 class RemunerationAdmin(admin
.ModelAdmin
):
960 class ResponsableInline(admin
.TabularInline
):
961 model
= rh
.ResponsableImplantation
963 fk_name
= "implantation"
966 class ResponsableImplantationAdmin(admin
.ModelAdmin
):
968 list_filter
= ('region', 'statut', )
969 list_display
= ('nom', 'statut', '_responsable', )
970 readonly_fields
= ('nom', )
972 inlines
= (ResponsableInline
, )
974 def _responsable(self
, obj
):
976 employe
= obj
.responsable
.employe
977 dossiers
= employe
.dossiers_encours()
978 if len(dossiers
) == 0:
979 return u
"<span style='color: red;'>%s %s </span>" % (
980 employe
, u
"sans dossier actif")
984 if obj
.statut
in (1, 2): # ouverte, ouverture imminente
985 css
= "style='color: red;'"
988 return u
"<span %s>Pas de responsable</span>" % css
989 _responsable
.allow_tags
= True
990 _responsable
.short_description
= u
"Responsable"
992 def has_add_permission(self
, request
=None):
995 def has_change_permission(self
, request
, obj
=None):
996 return in_drh_or_admin(request
.user
)
998 def has_delete_permission(self
, request
, obj
=None):
1002 class ServiceAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
, ArchiveMixin
):
1006 '_date_modification',
1007 'user_modification',
1009 list_filter
= ('archive', )
1010 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1012 'fields': ('nom', 'archive', ),
1016 def _date_modification(self
, obj
):
1017 return date(obj
.date_modification
) \
1018 if obj
.date_modification
is not None else "(aucune)"
1019 _date_modification
.short_description
= u
'date modification'
1020 _date_modification
.admin_order_field
= 'date_modification'
1023 class ServiceProxyAdmin(ServiceAdmin
):
1024 list_display
= ('nom', '_organigramme', '_archive', )
1027 def __init__(self
, *args
, **kwargs
):
1028 super(ServiceProxyAdmin
, self
).__init__(*args
, **kwargs
)
1029 self
.list_display_links
= (None, )
1031 def has_add_permission(self
, obj
):
1034 def has_change_permission(self
, request
, obj
=None):
1035 return in_drh_or_admin(request
.user
)
1037 def _organigramme(self
, obj
):
1038 return """<a href="%s"><strong>Organigramme</strong></a>""" % \
1039 (reverse('rho_service', args
=(obj
.id,)))
1040 _organigramme
.allow_tags
= True
1041 _organigramme
.short_description
= "Organigramme"
1044 class StatutAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1045 list_display
= ('code', 'nom', '_date_modification', 'user_modification', )
1046 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1048 'fields': ('code', 'nom', ),
1052 def _date_modification(self
, obj
):
1053 return date(obj
.date_modification
) \
1054 if obj
.date_modification
is not None else "(aucune)"
1055 _date_modification
.short_description
= u
'date modification'
1056 _date_modification
.admin_order_field
= 'date_modification'
1059 class TauxChangeAdmin(admin
.ModelAdmin
):
1064 '_date_modification',
1065 'user_modification',
1067 list_filter
= ('devise', )
1068 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1070 'fields': ('taux', 'devise', 'annee', ),
1074 def _date_modification(self
, obj
):
1075 return date(obj
.date_modification
) \
1076 if obj
.date_modification
is not None else "(aucune)"
1077 _date_modification
.short_description
= u
'date modification'
1078 _date_modification
.admin_order_field
= 'date_modification'
1081 class TypeContratAdmin(admin
.ModelAdmin
):
1085 '_date_modification',
1086 'user_modification',
1088 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1090 'fields': ('nom', 'nom_long', ),
1094 def _date_modification(self
, obj
):
1095 return date(obj
.date_modification
) \
1096 if obj
.date_modification
is not None else "(aucune)"
1097 _date_modification
.short_description
= u
'date modification'
1098 _date_modification
.admin_order_field
= 'date_modification'
1101 class TypePosteAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1102 search_fields
= ('nom', 'nom_feminin', )
1106 '_date_modification',
1107 'user_modification',
1109 list_filter
= ('categorie_emploi', 'famille_professionnelle')
1110 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1117 'famille_professionnelle',
1122 def _date_modification(self
, obj
):
1123 return date(obj
.date_modification
) \
1124 if obj
.date_modification
is not None else "(aucune)"
1125 _date_modification
.short_description
= u
'date modification'
1126 _date_modification
.admin_order_field
= 'date_modification'
1129 class TypeRemunerationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
,
1134 'nature_remuneration',
1136 '_date_modification',
1137 'user_modification',)
1138 list_filter
= ('archive', )
1139 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1140 (None, {'fields': ('nom', 'type_paiement', 'nature_remuneration',
1144 def _date_modification(self
, obj
):
1145 return date(obj
.date_modification
) \
1146 if obj
.date_modification
is not None else "(aucune)"
1147 _date_modification
.short_description
= u
'date modification'
1148 _date_modification
.admin_order_field
= 'date_modification'
1151 class TypeRevalorisationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1152 list_display
= ('nom', '_date_modification', 'user_modification', )
1153 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1154 (None, {'fields': ('nom', )}),
1157 def _date_modification(self
, obj
):
1158 return date(obj
.date_modification
) \
1159 if obj
.date_modification
is not None else "(aucune)"
1160 _date_modification
.short_description
= u
'date modification'
1161 _date_modification
.admin_order_field
= 'date_modification'
1164 class ValeurPointAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1171 '_date_modification',
1172 'user_modification',
1174 list_filter
= ('annee', 'devise', 'implantation__region', )
1175 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1176 (None, {'fields': ('valeur', 'devise', 'implantation', 'annee', )}),
1179 def _date_modification(self
, obj
):
1180 return date(obj
.date_modification
) \
1181 if obj
.date_modification
is not None else "(aucune)"
1182 _date_modification
.short_description
= u
'date modification'
1183 _date_modification
.admin_order_field
= 'date_modification'
1185 def _devise_code(self
, obj
):
1186 return obj
.devise
.code
1187 _devise_code
.short_description
= "Code de la devise"
1189 def _devise_nom(self
, obj
):
1190 return obj
.devise
.nom
1191 _devise_nom
.short_description
= "Nom de la devise"
1194 class ImplantationProxyAdmin(admin
.ModelAdmin
):
1195 list_display
= ('nom', '_organigramme')
1198 def __init__(self
, *args
, **kwargs
):
1199 super(ImplantationProxyAdmin
, self
).__init__(*args
, **kwargs
)
1200 self
.list_display_links
= (None, )
1202 def has_add_permission(self
, obj
):
1205 def has_change_permission(self
, request
, obj
=None):
1206 return in_drh_or_admin(request
.user
)
1208 def _organigramme(self
, obj
):
1209 return '<a href="%s"><strong>Organigramme</strong></a>' % (
1210 reverse('rho_implantation', args
=(obj
.id,))
1212 _organigramme
.allow_tags
= True
1213 _organigramme
.short_description
= "Organigramme"
1216 class RegionProxyAdmin(admin
.ModelAdmin
):
1217 list_display
= ('nom', '_organigramme')
1220 def __init__(self
, *args
, **kwargs
):
1221 super(RegionProxyAdmin
, self
).__init__(*args
, **kwargs
)
1222 self
.list_display_links
= (None, )
1224 def has_add_permission(self
, obj
):
1227 def has_change_permission(self
, request
, obj
=None):
1228 return in_drh_or_admin(request
.user
)
1230 def _organigramme(self
, obj
):
1231 return """<a href="%s"><strong>Organigramme</strong></a>""" % (
1232 reverse('rho_region', args
=(obj
.id,))
1234 _organigramme
.allow_tags
= True
1235 _organigramme
.short_description
= "Organigramme"
1238 admin
.site
.register(rh
.Classement
, ClassementAdmin
)
1239 admin
.site
.register(rh
.Devise
, DeviseAdmin
)
1240 admin
.site
.register(rh
.Dossier
, DossierAdmin
)
1241 admin
.site
.register(EmployeProxy
, EmployeProxyAdmin
)
1242 admin
.site
.register(ServiceProxy
, ServiceProxyAdmin
)
1243 admin
.site
.register(rh
.Employe
, EmployeAdmin
)
1244 admin
.site
.register(rh
.CategorieEmploi
, CategorieEmploiAdmin
)
1245 admin
.site
.register(rh
.FamilleProfessionnelle
)
1246 admin
.site
.register(rh
.OrganismeBstg
, OrganismeBstgAdmin
)
1247 admin
.site
.register(rh
.Poste
, PosteAdmin
)
1248 admin
.site
.register(
1249 rh
.ResponsableImplantationProxy
, ResponsableImplantationAdmin
1251 admin
.site
.register(rh
.Service
, ServiceAdmin
)
1252 admin
.site
.register(rh
.Statut
, StatutAdmin
)
1253 admin
.site
.register(rh
.TauxChange
, TauxChangeAdmin
)
1254 admin
.site
.register(rh
.TypeContrat
, TypeContratAdmin
)
1255 admin
.site
.register(rh
.TypePoste
, TypePosteAdmin
)
1256 admin
.site
.register(rh
.TypeRemuneration
, TypeRemunerationAdmin
)
1257 admin
.site
.register(rh
.TypeRevalorisation
, TypeRevalorisationAdmin
)
1258 admin
.site
.register(rh
.ValeurPoint
, ValeurPointAdmin
)
1259 admin
.site
.register(ImplantationProxy
, ImplantationProxyAdmin
)
1260 admin
.site
.register(RegionProxy
, RegionProxyAdmin
)