This commit is contained in:
2026-03-29 08:51:24 +00:00
parent badaa7ccb2
commit e0a7ee8334
2 changed files with 11 additions and 3 deletions

View File

@@ -17126,12 +17126,20 @@ function enregistrer_modif_parametresgeneraux()
url: $("#racineWeb").val()+"Ajaxparametresgeneraux/enregistrermodif/",
type : 'post',
data: donnees,
error: function(errorData) {
error: function(errorData) {
console.log("error => "+errorData);
$('#div_test_gabarit').html(errorData);
alert("error => "+errorData);
return;
},
success: function(data) {
console.log("success => "+data);
$('#div_test_gabarit').html(data);
alert("success => "+data);
return;
},
complete: function() {
afficher_parametresgeneraux();
// afficher_parametresgeneraux();
}
});
}