diff --git a/app/scodoc/sco_find_etud.py b/app/scodoc/sco_find_etud.py index 87686cfb1..45c15dd42 100644 --- a/app/scodoc/sco_find_etud.py +++ b/app/scodoc/sco_find_etud.py @@ -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}, diff --git a/app/static/js/scodoc.js b/app/static/js/scodoc.js index 32de37347..8bcc47c48 100644 --- a/app/static/js/scodoc.js +++ b/app/static/js/scodoc.js @@ -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,