This commit is contained in:
KONE SOREL 2026-03-15 13:02:14 +00:00
parent 747ff6c331
commit 0fe027567b

View File

@ -20788,21 +20788,27 @@ function enregistrer_modif_gc_assureur()
donnees += '&adresseGeographique='+adresseGeographique+'&numerodeCompteComptableTP='+numerodeCompteComptableTP;
donnees += '&numeroCompteContribuable='+numeroCompteContribuable+'&codeModePaiementDemande='+codeModePaiementDemande;
donnees += '&encaissementExige='+encaissementExige;
//alert(donnees);
//return;
$.ajax({
url: $("#racineWeb").val()+"Ajaxgcassureur/enregistrermodif/",
type : 'post',
data: donnees,
error: function(errorData) {
},
success: function(data) {
},
complete: function() {
retour_gc_assureur();
}
v_msg="Confirmez-vous cette action ?";
v_msgEng="Do you confirm this action?";
confirm_ebene(v_msg, v_msgEng)
.then((isConfirmed) => {
if (isConfirmed) {
$.ajax({
url: $("#racineWeb").val()+"Ajaxgcassureur/enregistrermodif/",
type : 'post',
data: donnees,
error: function(errorData) {
},
success: function(data) {
},
complete: function() {
retour_gc_assureur();
}
});
}
});
}