diff --git a/Js/fonctions.js b/Js/fonctions.js
index 8e12db6..750da1c 100755
--- a/Js/fonctions.js
+++ b/Js/fonctions.js
@@ -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('
' + 'Veuillez patienter... / Please wait...' + ' ');
+
+ $.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('
' + 'Veuillez patienter... / Please wait...' + ' ');
+
+ $.ajax({
+ url: v_url,
+ type : 'post',
+ error: function(errorData)
+ {
+ },
+ success: function(data)
+ {
+ donnees_retour = data;
+ },
+ complete: function() {
+ $('#div_detail_exp').html(donnees_retour);
+ }
+ });
+}
diff --git a/Vue/gabarit.php b/Vue/gabarit.php
index 9d09857..24bb933 100755
--- a/Vue/gabarit.php
+++ b/Vue/gabarit.php
@@ -635,7 +635,7 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte'];
-
+