This commit is contained in:
2025-12-31 18:54:31 +00:00
parent ecef2c30d1
commit 82d7298d1c
3 changed files with 37 additions and 1 deletions

View File

@@ -1097,4 +1097,20 @@ function consulter_college(idCollege)
{
window.location.assign($("#racineWeb" ).val()+"Consultercollege/"+idCollege+"/");
}
}
function pop_consulter_tableau_prestation()
{
$.ajax({
url: $("#racineWeb").val()+"Ajaxconsultertableauprestation/",
type : 'post',
error: function(errorData) {
},
success: function(data) {
$("#div_tableau_prestation").html(data);
},
complete: function() {
$("#btn_pop").click();
}
});
}