1 # -*- encoding: utf-8 -*-
3 from django
.db
.models
import Q
5 from project
import groups
6 from project
.rh
import models
as rh
9 class Responsable(object):
12 def get_query(self
, q
, request
):
14 return rh
.Poste
.objects
.none()
17 postes
= rh
.Poste
.objects
.filter(
19 Q(type_poste__nom__icontains
=q
) |
20 Q(rh_dossiers__employe__nom__icontains
=q
) |
21 Q(rh_dossiers__employe__prenom__icontains
=q
)
25 def format_result(self
, poste
):
27 filtre
= Q(poste
=poste
) & (
28 Q(poste__nom__icontains
=q
) |
Q(employe__nom__icontains
=q
) |
29 Q(employe__prenom__icontains
=q
)
31 dossiers
= rh
.Dossier
.objects
.filter(filtre
)
35 if len(dossiers
) == 1:
37 employe
= dossier
.employe
39 dossiers
= poste
.rh_dossiers
.all()
41 employe
= unicode(dossiers
[0].employe
)
44 return "[%s] %s (%s) (%s)" % (
45 poste
.implantation
.id, nom_poste
, poste
.id, employe
48 def format_item(self
, poste
):
50 the display of a currently selected object in the area below the
51 search box. html is OK
53 return self
.format_result(poste
)
55 def get_objects(self
, ids
):
57 given a list of ids, return the objects ordered as you would like
58 them on the admin page. this is for displaying the currently
59 selected items (in the case of a ManyToMany field)
61 return rh
.Poste
.objects
.filter(pk__in
=ids
)
64 class Dossier(object):
66 def get_query(self
, q
, request
):
67 employe
= groups
.get_employe_from_user(request
.user
)
68 prefixe_implantation
= 'poste__implantation'
70 q_recherche
= Q(poste__nom__icontains
=q
) | \
71 Q(poste__type_poste__nom__icontains
=q
) | \
72 Q(employe__nom__icontains
=q
) | \
73 Q(employe__prenom__icontains
=q
)
76 prefixe_implantation
+ '__zone_administrative':
77 employe
.implantation
.zone_administrative
80 user_groupes
= [g
.name
for g
in request
.user
.groups
.all()]
81 if groups
.DRH_NIVEAU_1
in user_groupes
:
82 q_filtre
= q_recherche
84 q_filtre
= q_place
& q_recherche
85 return rh
.Dossier
.objects
.filter(q_filtre
).distinct()
87 def format_result(self
, dossier
):
88 return dossier
.__unicode__()
90 def format_item(self
, dossier
):
92 the display of a currently selected object in the area below the
93 search box. html is OK
95 return self
.format_result(dossier
)
97 def get_objects(self
, ids
):
99 given a list of ids, return the objects ordered as you would like
100 them on the admin page. this is for displaying the currently
101 selected items (in the case of a ManyToMany field)
103 return rh
.Dossier
.objects
.filter(pk__in
=ids
)
108 def get_query(self
, q
, request
):
109 employe
= groups
.get_employe_from_user(request
.user
)
110 prefixe_implantation
= 'poste__implantation'
113 Q(poste__nom__icontains
=q
) | \
114 Q(poste__type_poste__nom__icontains
=q
)
116 if groups
.is_user_dans_services_centraux(request
.user
):
117 q_place
= Q(**{prefixe_implantation
: employe
.implantation
})
120 prefixe_implantation
+ '__zone_administrative':
121 employe
.implantation
.zone_administrative
124 user_groupes
= [g
.name
for g
in request
.user
.groups
.all()]
125 if groups
.DRH_NIVEAU_1
in user_groupes
:
126 q_filtre
= q_recherche
128 q_filtre
= q_place
& q_recherche
129 return rh
.Dossier
.objects
.filter(q_filtre
).order_by('-date_debut')
131 def format_result(self
, dossier
):
132 annee
= dossier
.date_debut
.year
133 if dossier
.date_fin
is not None:
134 annee
= dossier
.date_fin
.year
135 return u
"[%s] %s %s" % (
136 dossier
.poste
.implantation
, annee
, dossier
.poste
.nom
139 def format_item(self
, dossier
):
141 the display of a currently selected object in the area below the
142 search box. html is OK
144 return self
.format_result(dossier
)
146 def get_objects(self
, ids
):
148 given a list of ids, return the objects ordered as you would like
149 them on the admin page. this is for displaying the currently
150 selected items (in the case of a ManyToMany field)
152 return rh
.Dossier
.objects
.filter(pk__in
=ids
)