a
This commit is contained in:
@@ -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"/> <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"/> <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);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user