This commit is contained in:
2026-03-15 13:23:31 +00:00
parent ee7f39ac1d
commit f79de16ea7
2 changed files with 44 additions and 29 deletions

View File

@@ -20942,20 +20942,28 @@ function maj_paramfacturegarant()
donnees += '&nbAdherent='+nbAdherent;
donnees += '&nbBeneficiaire='+nbBeneficiaire;
$.ajax({
url: $("#racineWeb").val()+"Ajaxgcassureur/majparamfacturegarant/",
type : 'post',
data: donnees,
error: function(errorData) {
},
success: function(data) {
v_msg="Confirmez-vous cette action ?";
v_msgEng="Do you confirm this action?";
},
complete: function() {
// retour_fiche_garant();
consulter_param_fact_garant();
}
});
confirm_ebene(v_msg, v_msgEng)
.then((isConfirmed) => {
if (isConfirmed) {
$.ajax({
url: $("#racineWeb").val()+"Ajaxgcassureur/majparamfacturegarant/",
type : 'post',
data: donnees,
error: function(errorData) {
},
success: function(data) {
},
complete: function() {
// retour_fiche_garant();
consulter_param_fact_garant();
}
});
}
});
}