z
This commit is contained in:
@@ -6826,8 +6826,71 @@ function enregistrer_remplacement_adherent()
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function pop_afficher_selection_reincorporation()
|
||||
{
|
||||
var div_selection_assure = $('#div_selection_assure');
|
||||
div_selection_assure.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
||||
$("#btn_pop").click();
|
||||
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxselectionreincorporation/",
|
||||
|
||||
type : 'post',
|
||||
success: function(data) {
|
||||
div_selection_assure.html(data);
|
||||
},
|
||||
complete: function() {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function enregistrer_reincorporation()
|
||||
{
|
||||
var div_assure_a_retirer = $('#div_assure_a_retirer');
|
||||
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxdetailreincorporation/recapituler/",
|
||||
type: 'POST',
|
||||
success: function(data) {
|
||||
div_assure_a_retirer.html(data);
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
nbAliment=$("#nbAliment").val();
|
||||
|
||||
// alert("enregistrer_reincorporation => nbAliment => "+nbAliment);
|
||||
// return;
|
||||
|
||||
if (nbAliment<"1")
|
||||
{
|
||||
v_msg="Veuillez sélectionner les personnes à retirer!";
|
||||
v_msgEng="Please select the people to remove!";
|
||||
alert_ebene(v_msg, v_msgEng);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
v_msg="Confirmez-vous la réincorporation des personnes sélectionnées de cette police?";
|
||||
v_msgEng="Do you confirm the reinstatement of the selected individuals from this police force?";
|
||||
|
||||
if(confirm_ebene(v_msg, v_msgEng))
|
||||
{
|
||||
window.location.assign($("#racineWeb" ).val()+"Fichereincorporation/enregistrerreincorporation/");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function beneficiaire_a_reincorporer(p_choix, p_id_beneficiaire)
|
||||
{
|
||||
donnees = 'idBeneficiaire='+p_id_beneficiaire;
|
||||
donnees += '&choix='+p_choix;
|
||||
|
||||
<<<<<<< HEAD
|
||||
}
|
||||
|
||||
|
||||
@@ -6837,4 +6900,35 @@ function modifier_beneficiaire(id)
|
||||
{
|
||||
window.location.assign($("#racineWeb" ).val()+"Modifierbeneficiaire/"+id+"/");
|
||||
}
|
||||
=======
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxselectionreincorporation/selectionner/",
|
||||
type: 'POST',
|
||||
data: donnees,
|
||||
success: function(data) {
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function recapituler_reincorporer()
|
||||
{
|
||||
var div_assure_a_retirer = $('#div_assure_a_retirer');
|
||||
div_assure_a_retirer.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
||||
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxdetailreincorporation/recapituler/",
|
||||
type: 'POST',
|
||||
success: function(data) {
|
||||
div_assure_a_retirer.html(data);
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
}
|
||||
});
|
||||
>>>>>>> bed9a5d97d3a3cdba3bd774ed7fa29ac1f4c07ce
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user