diff --git a/Js/fonctions.js b/Js/fonctions.js
index ac4e625..36da2fd 100755
--- a/Js/fonctions.js
+++ b/Js/fonctions.js
@@ -1488,3 +1488,27 @@ function beneficiaire_a_retirer(p_choix, p_id_beneficiaire)
}
});
}
+
+function recapituler_retrait()
+{
+ var div_assure_a_retirer = $('#div_assure_a_retirer');
+
+ $.ajax({
+ url: $("#racineWeb").val()+"Ajaxdetailretrait/recapituler/",
+ type: 'POST',
+ success: function(data) {
+ div_assure_a_retirer.html(data);
+
+ var oTable = $('.tabliste').DataTable();
+ oTable.destroy();
+
+ setTimeout(function() {
+ appliquerDataTable();
+ }, 500);
+ },
+ error: function(data) {
+ },
+ complete: function() {
+ }
+ });
+}
diff --git a/Vue/gabarit.php b/Vue/gabarit.php
index dec3d8d..633d42b 100755
--- a/Vue/gabarit.php
+++ b/Vue/gabarit.php
@@ -595,7 +595,7 @@ $activeChildId = $menuData['child'];
-
+