This commit is contained in:
2025-12-31 13:32:20 +00:00
parent 27ca100482
commit 278233dab5
7 changed files with 170 additions and 187 deletions

View File

@@ -1062,3 +1062,24 @@ function addChartToPdf(pdf, canvasId, title, startY) {
pdf.addImage(imgData, "PNG", 10, startY + 5, 180, 60);
}
}
function charger_contrats(){
showLoader("#div_liste_contrats", { size: 3 });
$.ajax({
url: $("#racineWeb").val()+"Ajaxlistepolicesclient/",
type : 'post',
// data: donnees,
error: function(errorData) {
},
success: function(data) {
$("#div_liste_contrats").html(data);
}
});
}
function reset_contrats()
{
$("#div_liste_contrats").empty();
}