forked from ScoDoc/ScoDoc
search_etud_by_name: case insensitive.
This commit is contained in:
parent
bb23cdcea7
commit
5894c6f952
@ -301,7 +301,7 @@ def search_etud_by_name(term: str) -> list:
|
||||
FROM identite
|
||||
WHERE
|
||||
dept_id = %(dept_id)s
|
||||
AND code_nip LIKE %(beginning)s
|
||||
AND code_nip ILIKE %(beginning)s
|
||||
ORDER BY nom
|
||||
""",
|
||||
{"beginning": term + "%", "dept_id": g.scodoc_dept_id},
|
||||
@ -320,7 +320,7 @@ def search_etud_by_name(term: str) -> list:
|
||||
FROM identite
|
||||
WHERE
|
||||
dept_id = %(dept_id)s
|
||||
AND nom LIKE %(beginning)s
|
||||
AND nom ILIKE %(beginning)s
|
||||
ORDER BY nom
|
||||
""",
|
||||
{"beginning": term + "%", "dept_id": g.scodoc_dept_id},
|
||||
|
@ -185,7 +185,6 @@ $(function () {
|
||||
if (x) {
|
||||
try {
|
||||
let order_info = JSON.parse(x);
|
||||
console.log("set order=" + order_info);
|
||||
table_options.order = order_info;
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
@ -248,11 +247,6 @@ class ScoFieldEditor {
|
||||
return true; // Aucune modification, pas d'enregistrement mais on continue normalement
|
||||
}
|
||||
obj.classList.add("sco_wait");
|
||||
// DEBUG
|
||||
// console.log(`
|
||||
// data : ${value},
|
||||
// id: ${obj.dataset.oid}
|
||||
// `);
|
||||
|
||||
$.post(
|
||||
this.save_url,
|
||||
|
Loading…
Reference in New Issue
Block a user