diff --git a/app/scodoc/sco_find_etud.py b/app/scodoc/sco_find_etud.py
index 87686cfb108489d92f910d48b2dfc7fbddb004c1..45c15dd428835798598f490723ed3d6d7776d11f 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 32de37347597a37802369b2ec3cd2c4c7d7329eb..8bcc47c4893384a644bb1483bdcd5b17ad3b6050 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,