This commit is contained in:
KANE LAZENI 2026-01-05 02:16:43 +00:00
parent 86124a7b86
commit feff5ba681
2 changed files with 49 additions and 1 deletions

View File

@ -3283,3 +3283,51 @@ function sinistres_a_prime_college()
}
});
}
function requetes_synthese_consommation_police()
{
v_url = $("#racineWeb").val()+"Ajaxsyntheseconsopolice/";
$("#div_detail_exp").html('');
$("#div_detail_sp").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/>&nbsp;&nbsp;<span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
$.ajax({
url: v_url,
type : 'post',
error: function(errorData)
{
},
success: function(data)
{
donnees_retour = data;
},
complete: function()
{
$("#div_detail_sp").html(donnees_retour);
}
});
}
function requetes_synthese_consommation_police_export()
{
v_url = $("#racineWeb").val()+"Ajaxsyntheseconsopolice/exportxls/";
$("#div_detail_exp").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/>&nbsp;&nbsp;<span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
$.ajax({
url: v_url,
type : 'post',
error: function(errorData)
{
},
success: function(data)
{
donnees_retour = data;
},
complete: function() {
$('#div_detail_exp').html(donnees_retour);
}
});
}

View File

@ -635,7 +635,7 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte'];
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- Application Scripts -->
<script src="/Js/fonctions.js?ver=2026.01.05.10"></script>
<script src="/Js/fonctions.js?ver=2026.01.05.11"></script>
<script type="text/javascript">
raffraichier_gabarit();