v
This commit is contained in:
@@ -2966,21 +2966,22 @@ function retirer_tous_adherent_importe_college()
|
||||
v_msg="Attention, cela va vider ce collège! Confirmez-vous?";
|
||||
v_msgEng="Attention, this will empty this college! Do you confirm?";
|
||||
|
||||
if(confirm_ebene(v_msg, v_msgEng))
|
||||
{
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/retirertousadherentaucollege/",
|
||||
type: 'POST',
|
||||
data: donnees,
|
||||
success: function(data) {
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
afficher_adherent_importee();
|
||||
}
|
||||
});
|
||||
confirm_ebene(v_msg, v_msgEng).then(isConfirmed => {
|
||||
if (isConfirmed) {
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/retirertousadherentaucollege/",
|
||||
type: 'POST',
|
||||
data: donnees,
|
||||
success: function(data) {
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
afficher_adherent_importee();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function incorporer_assures_inmportes()
|
||||
|
||||
Reference in New Issue
Block a user