forked from ScoDoc/DocScoDoc
Fix: autocomplete recherche etudiant
This commit is contained in:
parent
96b22ac5ca
commit
5ffeae3e1f
@ -108,7 +108,7 @@ def search_etud_in_dept(
|
|||||||
REQUEST=None,
|
REQUEST=None,
|
||||||
):
|
):
|
||||||
"""Page recherche d'un etudiant
|
"""Page recherche d'un etudiant
|
||||||
expnom est un regexp sur le nom ou un code_nip
|
expnom est un regexp sur le nom ou un code_nip ou un etudid
|
||||||
dest_url est la page sur laquelle on sera redirigé après choix
|
dest_url est la page sur laquelle on sera redirigé après choix
|
||||||
parameters spécifie des arguments additionnels à passer à l'URL (en plus de etudid)
|
parameters spécifie des arguments additionnels à passer à l'URL (en plus de etudid)
|
||||||
"""
|
"""
|
||||||
@ -134,7 +134,9 @@ def search_etud_in_dept(
|
|||||||
etuds = search_etuds_infos(context, code_nip=expnom, REQUEST=REQUEST)
|
etuds = search_etuds_infos(context, code_nip=expnom, REQUEST=REQUEST)
|
||||||
elif expnom:
|
elif expnom:
|
||||||
etuds = search_etuds_infos(context, expnom=expnom, REQUEST=REQUEST)
|
etuds = search_etuds_infos(context, expnom=expnom, REQUEST=REQUEST)
|
||||||
else:
|
if expnom and not etuds:
|
||||||
|
etuds = context.getEtudInfo(filled=1, etudid=expnom, REQUEST=REQUEST)
|
||||||
|
if len(etuds) != 1:
|
||||||
etuds = []
|
etuds = []
|
||||||
if len(etuds) == 1:
|
if len(etuds) == 1:
|
||||||
# va directement a la destination
|
# va directement a la destination
|
||||||
@ -268,14 +270,14 @@ def search_etud_by_name(context, term, REQUEST=None):
|
|||||||
else:
|
else:
|
||||||
r = ndb.SimpleDictFetch(
|
r = ndb.SimpleDictFetch(
|
||||||
context,
|
context,
|
||||||
"SELECT nom, prenom FROM identite WHERE nom LIKE %(beginning)s ORDER BY nom",
|
"SELECT etudid, nom, prenom FROM identite WHERE nom LIKE %(beginning)s ORDER BY nom",
|
||||||
{"beginning": term + "%"},
|
{"beginning": term + "%"},
|
||||||
)
|
)
|
||||||
|
|
||||||
data = [
|
data = [
|
||||||
{
|
{
|
||||||
"label": "%s %s" % (x["nom"], scolars.format_prenom(x["prenom"])),
|
"label": "%s %s" % (x["nom"], scolars.format_prenom(x["prenom"])),
|
||||||
"value": x["nom"],
|
"value": x["etudid"],
|
||||||
}
|
}
|
||||||
for x in r
|
for x in r
|
||||||
]
|
]
|
||||||
|
@ -10,6 +10,7 @@ $(function() {
|
|||||||
position: { collision: 'flip' }, // automatic menu position up/down
|
position: { collision: 'flip' }, // automatic menu position up/down
|
||||||
source: "search_etud_by_name",
|
source: "search_etud_by_name",
|
||||||
select: function (event, ui) {
|
select: function (event, ui) {
|
||||||
|
$("#in-expnom").val(ui.item.value);
|
||||||
$("#form-chercheetud").submit();
|
$("#form-chercheetud").submit();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user