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', )}
523 ('Coordonnées personnelles', {
525 ('tel_domicile', 'tel_cellulaire'),
526 ('adresse', 'ville'),
527 ('code_postal', 'province'),
534 def _apercu(self
, obj
):
535 return u
"""<a title="Aperçu de l'employé"
536 onclick="return showAddAnotherPopup(this);"
538 <img src="%simg/loupe.png" />
540 (reverse('employe_apercu', args
=(obj
.id,)), settings
.STATIC_URL
)
541 _apercu
.allow_tags
= True
542 _apercu
.short_description
= u
""
545 edit_link
= reverse('admin:rh_employe_change', args
=(obj
.id,))
546 return u
"""<a href='%s'><strong>%s</strong></a>""" % \
547 (edit_link
, "%s %s" % (obj
.nom
.upper(), obj
.prenom
))
548 _nom
.allow_tags
= True
549 _nom
.short_description
= u
"Employé"
550 _nom
.admin_order_field
= "nom"
554 _id
.short_description
= u
"#"
555 _id
.admin_order_field
= "id"
557 def _date_modification(self
, obj
):
558 return date(obj
.date_modification
) \
559 if obj
.date_modification
is not None else "(aucune)"
560 _date_modification
.short_description
= u
'date modification'
561 _date_modification
.admin_order_field
= 'date_modification'
563 def _dossiers_postes(self
, obj
):
565 for d
in obj
.rh_dossiers
.all().order_by('-date_debut'):
566 dossier
= u
"""<a title="Aperçu du dossier"
568 onclick="return showAddAnotherPopup(this);"
569 title="Aperçu du dossier">
570 <img src="%simg/loupe.png" />
572 <a href="%s">Dossier</a>
574 (reverse('dossier_apercu', args
=(d
.id,)),
576 reverse('admin:rh_dossier_change', args
=(d
.id,)))
578 poste
= u
"""<a title="Aperçu du poste"
580 onclick="return showAddAnotherPopup(this);"
581 title="Aperçu du poste">
582 <img src="%simg/loupe.png" />
584 <a href="%s">Poste</a>
586 (reverse('poste_apercu', args
=(d
.poste
.id,)),
588 reverse('admin:rh_poste_change', args
=(d
.poste
.id,)))
589 link
= u
"""<li>%s %s - %s : [%s] %s</li>""" % \
596 # Dossier terminé en gris non cliquable
597 if d
.date_fin
is not None and d
.date_fin
< datetime
.date
.today():
598 link
= u
"""<li style="color: grey">%s : [%s] %s</li>""" % \
605 return "<ul>%s</ul>" % "\n".join(l
)
606 _dossiers_postes
.allow_tags
= True
607 _dossiers_postes
.short_description
= u
"Dossiers et postes"
609 def queryset(self
, request
):
610 qs
= super(EmployeAdmin
, self
).queryset(request
)
611 return qs
.select_related(depth
=1).order_by('nom')
613 def save_formset(self
, request
, form
, formset
, change
):
614 instances
= formset
.save(commit
=False)
615 for instance
in instances
:
616 if instance
.__class__
== rh
.EmployeCommentaire
:
617 instance
.owner
= request
.user
618 instance
.date_creation
= datetime
.datetime
.now()
622 class EmployeProxyAdmin(EmployeAdmin
):
623 list_display
= ('_id', '_apercu', '_nom', '_organigramme')
626 def __init__(self
, *args
, **kwargs
):
627 super(EmployeProxyAdmin
, self
).__init__(*args
, **kwargs
)
628 self
.list_display_links
= (None, )
630 def has_add_permission(self
, obj
):
633 def _organigramme(self
, obj
):
635 for d
in rh
.Dossier
.objects
.filter(
636 Q(date_fin__gt
=datetime
.date
.today()) |
Q(date_fin
=None),
637 Q(date_debut__lt
=datetime
.date
.today()) |
Q(date_debut
=None),
641 u
'Organigramme, niveau: ' \
642 u
'<input type="text" id="level_%s" ' \
643 u
'style="width:30px;height:15px;" /> ' \
644 u
'<input type="button" value="Générer" ' \
645 u
"""onclick="window.location='%s' + """ \
646 u
"""document.getElementById('level_%s').value" />""" % (
648 reverse('rho_employe_sans_niveau', args
=(d
.poste
.id,)),
651 link
= u
"""<li>%s - [%s] %s : %s</li>""" % (
658 return "<ul>%s</ul>" % "\n".join(l
)
660 _organigramme
.allow_tags
= True
661 _organigramme
.short_description
= "Organigramme"
664 class EmployeCommentaireAdmin(admin
.ModelAdmin
):
668 class EmployePieceAdmin(admin
.ModelAdmin
):
672 class CategorieEmploiAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
673 list_display
= ('nom', '_date_modification', 'user_modification', )
674 inlines
= (TypePosteInline
,)
675 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
676 (None, {'fields': ('nom', )}),)
678 def _date_modification(self
, obj
):
679 return date(obj
.date_modification
) \
680 if obj
.date_modification
is not None else "(aucune)"
681 _date_modification
.short_description
= u
'date modification'
682 _date_modification
.admin_order_field
= 'date_modification'
685 class OrganismeBstgAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
686 search_fields
= ('nom',)
691 '_date_modification',
694 list_filter
= ('type', )
695 inlines
= (DossierROInline
,)
696 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
697 (None, {'fields': ('nom', 'type', 'pays',)}),
700 def _date_modification(self
, obj
):
701 return date(obj
.date_modification
) \
702 if obj
.date_modification
is not None else "(aucune)"
703 _date_modification
.short_description
= u
'date modification'
704 _date_modification
.admin_order_field
= 'date_modification'
707 class PosteAdmin(DateRangeMixin
, AUFMetadataAdminMixin
, \
708 ProtectRegionMixin
, admin
.ModelAdmin
, AjaxSelect
,):
709 form
= make_ajax_form(rh
.Poste
, {
710 'implantation': 'implantations',
711 'type_poste': 'typepostes',
712 'responsable': 'postes',
713 'valeur_point_min': 'valeurpoints',
714 'valeur_point_max': 'valeurpoints',
716 alphabet_filter
= 'nom'
721 'implantation__region__code',
722 'implantation__region__nom',
723 'rh_dossiers__employe__nom',
724 'rh_dossiers__employe__prenom',
736 '_date_modification',
741 'implantation__region',
745 'type_poste__categorie_emploi',
746 'type_poste__famille_professionnelle',
749 list_display_links
= ('_nom',)
750 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
752 ('nom', 'nom_feminin'),
762 'regime_travail_nb_heure_semaine'),
766 'fields': (('local', 'expatrie', 'mise_a_disposition', 'appel'),)}
769 'fields': (('classement_min',
782 ('Comparatifs de rémunération', {
783 'fields': ('devise_comparaison',
784 ('comp_locale_min', 'comp_locale_max'),
785 ('comp_universite_min', 'comp_universite_max'),
786 ('comp_fonctionpub_min', 'comp_fonctionpub_max'),
787 ('comp_ong_min', 'comp_ong_max'),
788 ('comp_autre_min', 'comp_autre_max'))}
791 'fields': ('justification',)}
793 ('Autres Méta-données', {
794 'fields': ('date_debut', 'date_fin')}
798 inlines
= (PosteFinancementInline
,
801 PosteComparaisonInline
,
802 PosteCommentaireInline
, )
804 def lookup_allowed(self
, key
, value
):
806 'date_debut__gte', 'date_debut__isnull', 'date_fin__lte',
807 'date_fin__isnull', 'implantation__region__id__exact',
808 'implantation__id__exact', 'type_poste__id__exact',
809 'type_poste__categorie_emploi__id__exact', 'service__id__exact',
810 'service__isnull', 'vacant__exact', 'vacant__isnull',
811 ) or super(PosteAdmin
, self
).lookup_allowed(key
, value
)
813 def _apercu(self
, poste
):
814 view_link
= u
"""<a onclick="return showAddAnotherPopup(this);"
815 title="Aperçu du poste"
817 <img src="%simg/loupe.png" />
819 (reverse('poste_apercu', args
=(poste
.id,)),
820 settings
.STATIC_URL
,)
822 _apercu
.allow_tags
= True
823 _apercu
.short_description
= ''
825 def _dae(self
, poste
):
827 postes_dae
= poste
.postes_dae
.all()
828 if len(postes_dae
) > 0:
829 poste_dae
= postes_dae
[0]
831 u
'<a title="Aperçu du dossier" href="%s" ' \
832 u
'onclick="return showAddAnotherPopup(this);">' \
833 u
'<img src="%simg/loupe.png" /></a>' % (reverse(
834 'poste_consulter', args
=("dae-%s" % poste_dae
.id,)
835 ), settings
.STATIC_URL
)
837 _dae
.allow_tags
= True
838 _dae
.short_description
= u
"DAE"
842 _id
.short_description
= '#'
843 _id
.admin_order_field
= 'id'
845 def _service(self
, obj
):
846 if obj
.service
.supprime
:
847 return """<span style="color:red">%s</span>""" % obj
.service
850 _service
.short_description
= 'Service'
851 _service
.allow_tags
= True
853 def _responsable(self
, obj
):
855 responsable
= u
"""<a href="%s"
856 onclick="return showAddAnotherPopup(this)">
857 <img src="%simg/loupe.png"
858 title="Aperçu du poste" />
862 (reverse('poste_apercu', args
=(obj
.responsable
.id,)),
864 reverse('admin:rh_poste_change', args
=(obj
.responsable
.id,)),
870 employe
= obj
.responsable
.rh_dossiers
.all()[0]
871 employe_id
= obj
.responsable
.rh_dossiers
.all()[0].id
872 employe_html
= u
"""<br />
874 onclick="return showAddAnotherPopup(this)">
875 <img src="%simg/loupe.png"
876 title="Aperçu de l'employé">
878 <a href="%s">%s</a>""" % \
879 (reverse('employe_apercu', args
=(employe_id
,)),
881 reverse('admin:rh_employe_change', args
=(employe_id
,)),
886 return "%s %s" % (responsable
, employe_html
)
887 _responsable
.short_description
= 'Responsable'
888 _responsable
.allow_tags
= True
890 def _nom(self
, poste
):
891 return """<a href="%s">%s</a>""" % \
892 (reverse('admin:rh_poste_change', args
=(poste
.id,)),
894 _nom
.allow_tags
= True
895 _nom
.short_description
= u
'Nom'
896 _nom
.admin_order_field
= 'nom'
898 def _date_modification(self
, obj
):
899 return date(obj
.date_modification
)
900 _date_modification
.short_description
= u
'date modification'
901 _date_modification
.admin_order_field
= 'date_modification'
903 def _occupe_par(self
, obj
):
904 """Formatte la méthode Poste.occupe_par() pour l'admin"""
906 if obj
.date_fin
is not None and obj
.date_fin
< datetime
.date
.today():
908 employes
= obj
.occupe_par()
912 link
= u
"""<a href='%s'
913 title='Aperçu de l\'employer'
914 onclick='return showAddAnotherPopup(this)'>
915 <img src='%simg/loupe.png' />
917 <a href='%s'>%s</a>""" % \
918 (reverse('employe_apercu', args
=(e
.id,)),
920 reverse('admin:rh_employe_change', args
=(e
.id,)),
923 output
= "\n<br />".join(l
)
925 _occupe_par
.allow_tags
= True
926 _occupe_par
.short_description
= "Occupé par"
928 def save_formset(self
, request
, form
, formset
, change
):
929 instances
= formset
.save(commit
=False)
930 for instance
in instances
:
931 if instance
.__class__
== rh
.PosteCommentaire
:
932 instance
.owner
= request
.user
933 instance
.date_creation
= datetime
.datetime
.now()
938 class PosteCommentaireAdmin(admin
.ModelAdmin
):
942 class PosteFinancementAdmin(admin
.ModelAdmin
):
946 class PostePieceAdmin(admin
.ModelAdmin
):
950 class RemunerationAdmin(admin
.ModelAdmin
):
954 class ResponsableInline(admin
.TabularInline
):
955 model
= rh
.ResponsableImplantation
957 fk_name
= "implantation"
960 class ResponsableImplantationAdmin(admin
.ModelAdmin
):
962 list_filter
= ('region', 'statut', )
963 list_display
= ('nom', 'statut', '_responsable', )
964 readonly_fields
= ('nom', )
966 inlines
= (ResponsableInline
, )
968 def _responsable(self
, obj
):
970 employe
= obj
.responsable
.employe
971 dossiers
= employe
.dossiers_encours()
972 if len(dossiers
) == 0:
973 return u
"<span style='color: red;'>%s %s </span>" % (
974 employe
, u
"sans dossier actif")
978 if obj
.statut
in (1, 2): # ouverte, ouverture imminente
979 css
= "style='color: red;'"
982 return u
"<span %s>Pas de responsable</span>" % css
983 _responsable
.allow_tags
= True
984 _responsable
.short_description
= u
"Responsable"
986 def has_add_permission(self
, request
=None):
989 def has_change_permission(self
, request
, obj
=None):
990 return in_drh_or_admin(request
.user
)
992 def has_delete_permission(self
, request
, obj
=None):
996 class ServiceAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
, ArchiveMixin
):
1000 '_date_modification',
1001 'user_modification',
1003 list_filter
= ('archive', )
1004 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1006 'fields': ('nom', 'archive', ),
1010 def _date_modification(self
, obj
):
1011 return date(obj
.date_modification
) \
1012 if obj
.date_modification
is not None else "(aucune)"
1013 _date_modification
.short_description
= u
'date modification'
1014 _date_modification
.admin_order_field
= 'date_modification'
1017 class ServiceProxyAdmin(ServiceAdmin
):
1018 list_display
= ('nom', '_organigramme', '_archive', )
1021 def __init__(self
, *args
, **kwargs
):
1022 super(ServiceProxyAdmin
, self
).__init__(*args
, **kwargs
)
1023 self
.list_display_links
= (None, )
1025 def has_add_permission(self
, obj
):
1028 def has_change_permission(self
, request
, obj
=None):
1029 return in_drh_or_admin(request
.user
)
1031 def _organigramme(self
, obj
):
1032 return """<a href="%s"><strong>Organigramme</strong></a>""" % \
1033 (reverse('rho_service', args
=(obj
.id,)))
1034 _organigramme
.allow_tags
= True
1035 _organigramme
.short_description
= "Organigramme"
1038 class StatutAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1039 list_display
= ('code', 'nom', '_date_modification', 'user_modification', )
1040 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1042 'fields': ('code', 'nom', ),
1046 def _date_modification(self
, obj
):
1047 return date(obj
.date_modification
) \
1048 if obj
.date_modification
is not None else "(aucune)"
1049 _date_modification
.short_description
= u
'date modification'
1050 _date_modification
.admin_order_field
= 'date_modification'
1053 class TauxChangeAdmin(admin
.ModelAdmin
):
1058 '_date_modification',
1059 'user_modification',
1061 list_filter
= ('devise', )
1062 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1064 'fields': ('taux', 'devise', 'annee', ),
1068 def _date_modification(self
, obj
):
1069 return date(obj
.date_modification
) \
1070 if obj
.date_modification
is not None else "(aucune)"
1071 _date_modification
.short_description
= u
'date modification'
1072 _date_modification
.admin_order_field
= 'date_modification'
1075 class TypeContratAdmin(admin
.ModelAdmin
):
1079 '_date_modification',
1080 'user_modification',
1082 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1084 'fields': ('nom', 'nom_long', ),
1088 def _date_modification(self
, obj
):
1089 return date(obj
.date_modification
) \
1090 if obj
.date_modification
is not None else "(aucune)"
1091 _date_modification
.short_description
= u
'date modification'
1092 _date_modification
.admin_order_field
= 'date_modification'
1095 class TypePosteAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1096 search_fields
= ('nom', 'nom_feminin', )
1100 '_date_modification',
1101 'user_modification',
1103 list_filter
= ('categorie_emploi', 'famille_professionnelle')
1104 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1111 'famille_professionnelle',
1116 def _date_modification(self
, obj
):
1117 return date(obj
.date_modification
) \
1118 if obj
.date_modification
is not None else "(aucune)"
1119 _date_modification
.short_description
= u
'date modification'
1120 _date_modification
.admin_order_field
= 'date_modification'
1123 class TypeRemunerationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
,
1128 'nature_remuneration',
1130 '_date_modification',
1131 'user_modification',)
1132 list_filter
= ('archive', )
1133 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1134 (None, {'fields': ('nom', 'type_paiement', 'nature_remuneration',
1138 def _date_modification(self
, obj
):
1139 return date(obj
.date_modification
) \
1140 if obj
.date_modification
is not None else "(aucune)"
1141 _date_modification
.short_description
= u
'date modification'
1142 _date_modification
.admin_order_field
= 'date_modification'
1145 class TypeRevalorisationAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1146 list_display
= ('nom', '_date_modification', 'user_modification', )
1147 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1148 (None, {'fields': ('nom', )}),
1151 def _date_modification(self
, obj
):
1152 return date(obj
.date_modification
) \
1153 if obj
.date_modification
is not None else "(aucune)"
1154 _date_modification
.short_description
= u
'date modification'
1155 _date_modification
.admin_order_field
= 'date_modification'
1158 class ValeurPointAdmin(AUFMetadataAdminMixin
, admin
.ModelAdmin
):
1165 '_date_modification',
1166 'user_modification',
1168 list_filter
= ('annee', 'devise', 'implantation__region', )
1169 fieldsets
= AUFMetadataAdminMixin
.fieldsets
+ (
1170 (None, {'fields': ('valeur', 'devise', 'implantation', 'annee', )}),
1173 def _date_modification(self
, obj
):
1174 return date(obj
.date_modification
) \
1175 if obj
.date_modification
is not None else "(aucune)"
1176 _date_modification
.short_description
= u
'date modification'
1177 _date_modification
.admin_order_field
= 'date_modification'
1179 def _devise_code(self
, obj
):
1180 return obj
.devise
.code
1181 _devise_code
.short_description
= "Code de la devise"
1183 def _devise_nom(self
, obj
):
1184 return obj
.devise
.nom
1185 _devise_nom
.short_description
= "Nom de la devise"
1188 class ImplantationProxyAdmin(admin
.ModelAdmin
):
1189 list_display
= ('nom', '_organigramme')
1192 def __init__(self
, *args
, **kwargs
):
1193 super(ImplantationProxyAdmin
, self
).__init__(*args
, **kwargs
)
1194 self
.list_display_links
= (None, )
1196 def has_add_permission(self
, obj
):
1199 def has_change_permission(self
, request
, obj
=None):
1200 return in_drh_or_admin(request
.user
)
1202 def _organigramme(self
, obj
):
1203 return '<a href="%s"><strong>Organigramme</strong></a>' % (
1204 reverse('rho_implantation', args
=(obj
.id,))
1206 _organigramme
.allow_tags
= True
1207 _organigramme
.short_description
= "Organigramme"
1210 class RegionProxyAdmin(admin
.ModelAdmin
):
1211 list_display
= ('nom', '_organigramme')
1214 def __init__(self
, *args
, **kwargs
):
1215 super(RegionProxyAdmin
, self
).__init__(*args
, **kwargs
)
1216 self
.list_display_links
= (None, )
1218 def has_add_permission(self
, obj
):
1221 def has_change_permission(self
, request
, obj
=None):
1222 return in_drh_or_admin(request
.user
)
1224 def _organigramme(self
, obj
):
1225 return """<a href="%s"><strong>Organigramme</strong></a>""" % (
1226 reverse('rho_region', args
=(obj
.id,))
1228 _organigramme
.allow_tags
= True
1229 _organigramme
.short_description
= "Organigramme"
1232 admin
.site
.register(rh
.Classement
, ClassementAdmin
)
1233 admin
.site
.register(rh
.Devise
, DeviseAdmin
)
1234 admin
.site
.register(rh
.Dossier
, DossierAdmin
)
1235 admin
.site
.register(EmployeProxy
, EmployeProxyAdmin
)
1236 admin
.site
.register(ServiceProxy
, ServiceProxyAdmin
)
1237 admin
.site
.register(rh
.Employe
, EmployeAdmin
)
1238 admin
.site
.register(rh
.CategorieEmploi
, CategorieEmploiAdmin
)
1239 admin
.site
.register(rh
.FamilleProfessionnelle
)
1240 admin
.site
.register(rh
.OrganismeBstg
, OrganismeBstgAdmin
)
1241 admin
.site
.register(rh
.Poste
, PosteAdmin
)
1242 admin
.site
.register(
1243 rh
.ResponsableImplantationProxy
, ResponsableImplantationAdmin
1245 admin
.site
.register(rh
.Service
, ServiceAdmin
)
1246 admin
.site
.register(rh
.Statut
, StatutAdmin
)
1247 admin
.site
.register(rh
.TauxChange
, TauxChangeAdmin
)
1248 admin
.site
.register(rh
.TypeContrat
, TypeContratAdmin
)
1249 admin
.site
.register(rh
.TypePoste
, TypePosteAdmin
)
1250 admin
.site
.register(rh
.TypeRemuneration
, TypeRemunerationAdmin
)
1251 admin
.site
.register(rh
.TypeRevalorisation
, TypeRevalorisationAdmin
)
1252 admin
.site
.register(rh
.ValeurPoint
, ValeurPointAdmin
)
1253 admin
.site
.register(ImplantationProxy
, ImplantationProxyAdmin
)
1254 admin
.site
.register(RegionProxy
, RegionProxyAdmin
)