From 31409fda62685eb41ccb647cc518fe8e9fe4f454 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Mon, 5 Jan 2026 01:46:31 +0000 Subject: [PATCH] a --- Js/fonctions.js | 25 +++++++++++++++++++++++++ Vue/gabarit.php | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 5d69867..397a5b2 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -3200,3 +3200,28 @@ function listerfacturefamille() } }); } + +function afficher_beneficiare_prime_adherent() +{ + debutPeriode = $("#debutPeriode").val(); + finPeriode = $("#finPeriode").val(); + + donnees_retour = ""; + donnees = 'debutPeriode='+debutPeriode+"&finPeriode="+finPeriode; + + $("#div_detail_requete").html('
  ' + 'Veuillez patienter... / Please wait...' + '
'); + + $.ajax({ + url: $("#racineWeb").val()+"Ajaxbeneficiaireprimeadherent/", + type : 'post', + data: donnees, + error: function(errorData) { + }, + success: function(data) { + donnees_retour = data; + }, + complete: function() { + $("#div_detail_requete").html(donnees_retour); + } + }); +} diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 0d2e9d1..33897d5 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -635,7 +635,7 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte']; - +