This commit is contained in:
2026-04-20 15:38:39 +00:00
parent f1c0da97b0
commit e0b496865f
23 changed files with 3983 additions and 3162 deletions

View File

@@ -15,7 +15,6 @@ function alert_ebene_no_sweet_alert(p_msg, p_msg_eng)
}
}
function alert_ebene_callback(p_msg, p_msg_eng, callback) {
let codeLangue = $("#codeLangue").val();
let message = (codeLangue === "en_US") ? p_msg_eng : p_msg;
@@ -28835,3 +28834,14 @@ function listerdemandesconsultation()
}
});
}
function charger_csrf_token(v_data)
{
csrf_token=$("#csrf_token").val();
if (!v_data || v_data.trim() === "") {
v_data = 'csrf_token=' + csrf_token;
}else{
v_data += '&csrf_token=' + csrf_token;
}
return v_data;
}