dr
This commit is contained in:
parent
ad9393195e
commit
e1ea7b215e
303
Js/fonctions.js
303
Js/fonctions.js
|
|
@ -1356,7 +1356,17 @@ function imprimer_contrat()
|
||||||
function imprimer_cp(lienEtat)
|
function imprimer_cp(lienEtat)
|
||||||
{
|
{
|
||||||
var div_export = $('#div_export_a');
|
var div_export = $('#div_export_a');
|
||||||
div_export.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
|
||||||
|
div_export.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
donnees = 'lienEtat='+lienEtat;
|
donnees = 'lienEtat='+lienEtat;
|
||||||
|
|
||||||
|
|
@ -1454,19 +1464,21 @@ function enregistrer_avenant()
|
||||||
v_msg="Confirmez-vous cet avenant?";
|
v_msg="Confirmez-vous cet avenant?";
|
||||||
v_msgEng="Do you confirm this amendment to the contract?";
|
v_msgEng="Do you confirm this amendment to the contract?";
|
||||||
|
|
||||||
/*
|
|
||||||
if(confirm_ebene(v_msg, v_msgEng))
|
|
||||||
{
|
|
||||||
var div_attente = $('#div_attente');
|
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
|
||||||
$("#btn_enreg").click();
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
confirm_ebene(v_msg, v_msgEng).then(isConfirmed => {
|
confirm_ebene(v_msg, v_msgEng).then(isConfirmed => {
|
||||||
if (isConfirmed) {
|
if (isConfirmed) {
|
||||||
var div_attente = $('#div_attente');
|
var div_attente = $('#div_attente');
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
|
||||||
$("#btn_enreg").click();
|
div_attente.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -1476,7 +1488,17 @@ function pop_afficher_selection_retrait()
|
||||||
{
|
{
|
||||||
var div_selection_assure = $('#div_selection_assure');
|
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>');
|
div_selection_assure.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxselectionretrait/",
|
url: $("#racineWeb").val()+"Ajaxselectionretrait/",
|
||||||
|
|
@ -1627,7 +1649,16 @@ function exporter_modele_assure()
|
||||||
|
|
||||||
var div_export = $('#div_exporter_liste_assures');
|
var div_export = $('#div_exporter_liste_assures');
|
||||||
|
|
||||||
div_export.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
div_export.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/exportermodele/",
|
url: $("#racineWeb").val()+"Ajaximporterlisteassure/exportermodele/",
|
||||||
|
|
@ -1906,7 +1937,16 @@ function ebene_confirmer_photo_face() // OK
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$("#div_wait_face_ebene").html('<div><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_wait_face_ebene").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
compare_face = $("#compare_face").val();
|
compare_face = $("#compare_face").val();
|
||||||
|
|
||||||
|
|
@ -2000,7 +2040,16 @@ function ebene_supprimer_photo_face() // OK
|
||||||
$("ebene_take_photo_face").prop('disabled', true);
|
$("ebene_take_photo_face").prop('disabled', true);
|
||||||
$("motif").prop('disabled', true);
|
$("motif").prop('disabled', true);
|
||||||
|
|
||||||
$("#div_wait_face_ebene").html('<div><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_wait_face_ebene").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
compare_face = $("#compare_face").val();
|
compare_face = $("#compare_face").val();
|
||||||
|
|
||||||
|
|
@ -2058,7 +2107,16 @@ function histsupprface()
|
||||||
|
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_detail_suppr_face").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_detail_suppr_face").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxhistsupprface/",
|
url: $("#racineWeb").val()+"Ajaxhistsupprface/",
|
||||||
|
|
@ -2084,7 +2142,16 @@ function histsupprface_export()
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
donnees_retour = "";
|
donnees_retour = "";
|
||||||
|
|
||||||
$("#div_detail_suppr_face").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_detail_suppr_face").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxhistsupprfaceexport/",
|
url: $("#racineWeb").val()+"Ajaxhistsupprfaceexport/",
|
||||||
|
|
@ -2111,7 +2178,16 @@ function histo_enrollement_face()
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
donnees_retour = "";
|
donnees_retour = "";
|
||||||
|
|
||||||
$("#div_detail_suppr_face").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_detail_suppr_face").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxhistsupprfaceexport/historiqueenrollement/",
|
url: $("#racineWeb").val()+"Ajaxhistsupprfaceexport/historiqueenrollement/",
|
||||||
|
|
@ -2135,7 +2211,16 @@ function afficher_liste_log_reconnaissance_faciale()
|
||||||
|
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_detail").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_detail").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxlogreconnaissancefaciale/",
|
url: $("#racineWeb").val()+"Ajaxlogreconnaissancefaciale/",
|
||||||
|
|
@ -2159,7 +2244,16 @@ function exporter_log_reconnaissance_faciale()
|
||||||
|
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_deatil_pop").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_deatil_pop").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$("#btn_pop").click();
|
$("#btn_pop").click();
|
||||||
|
|
||||||
|
|
@ -2185,7 +2279,16 @@ function afficher_liste_log_register_face()
|
||||||
|
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_detail").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_detail").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxlogregisterface/",
|
url: $("#racineWeb").val()+"Ajaxlogregisterface/",
|
||||||
|
|
@ -2209,7 +2312,16 @@ function exporter_log_register_face()
|
||||||
|
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_deatil_pop").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_deatil_pop").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$("#btn_pop").click();
|
$("#btn_pop").click();
|
||||||
|
|
||||||
|
|
@ -2235,7 +2347,16 @@ function afficher_liste_log_remove_face()
|
||||||
|
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_detail").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_detail").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxlogremoveface/",
|
url: $("#racineWeb").val()+"Ajaxlogremoveface/",
|
||||||
|
|
@ -2259,7 +2380,16 @@ function exporter_log_remove_face()
|
||||||
|
|
||||||
donnees = 'debut='+debut+'&fin='+fin;
|
donnees = 'debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_deatil_pop").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_deatil_pop").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$("#btn_pop").click();
|
$("#btn_pop").click();
|
||||||
|
|
||||||
|
|
@ -2296,7 +2426,16 @@ function afficher_liste_logconnexion()
|
||||||
|
|
||||||
donnees = 'login='+login+'&ipConnexion='+ipConnexion+'&debut='+debut+'&fin='+fin;
|
donnees = 'login='+login+'&ipConnexion='+ipConnexion+'&debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_detail").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_detail").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxlogconnexion/",
|
url: $("#racineWeb").val()+"Ajaxlogconnexion/",
|
||||||
|
|
@ -2322,7 +2461,16 @@ function exporter_liste_logconnexion()
|
||||||
|
|
||||||
donnees = 'login='+login+'&ipConnexion='+ipConnexion+'&debut='+debut+'&fin='+fin;
|
donnees = 'login='+login+'&ipConnexion='+ipConnexion+'&debut='+debut+'&fin='+fin;
|
||||||
|
|
||||||
$("#div_deatil_pop").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_deatil_pop").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$("#btn_pop").click();
|
$("#btn_pop").click();
|
||||||
|
|
||||||
|
|
@ -2470,6 +2618,17 @@ function prorater_prime_beneficiaire()
|
||||||
donnees += '&fraisCarte='+fraisCarte;
|
donnees += '&fraisCarte='+fraisCarte;
|
||||||
donnees += '&prorata='+prorata;
|
donnees += '&prorata='+prorata;
|
||||||
|
|
||||||
|
$("#div_prime").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxproraterprimebeneficiaire/",
|
url: $("#racineWeb").val()+"Ajaxproraterprimebeneficiaire/",
|
||||||
type : 'post',
|
type : 'post',
|
||||||
|
|
@ -2683,7 +2842,16 @@ function calculer_prime_inmportation()
|
||||||
|
|
||||||
var div_attente = $('#div_liste_assure_importe');
|
var div_attente = $('#div_liste_assure_importe');
|
||||||
|
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
div_attente.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/calculerprimeimportee/",
|
url: $("#racineWeb").val()+"Ajaximporterlisteassure/calculerprimeimportee/",
|
||||||
|
|
@ -2762,7 +2930,16 @@ function incorporer_assures_inmportes()
|
||||||
{
|
{
|
||||||
var div_attente = $('#div_liste_assure_importe');
|
var div_attente = $('#div_liste_assure_importe');
|
||||||
|
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
div_attente.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/incorpoerassuresimportes/",
|
url: $("#racineWeb").val()+"Ajaximporterlisteassure/incorpoerassuresimportes/",
|
||||||
|
|
@ -2826,8 +3003,16 @@ function afficher_adherent_importee()
|
||||||
|
|
||||||
var div_attente = $('#div_adherents_importes');
|
var div_attente = $('#div_adherents_importes');
|
||||||
|
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
div_attente.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/afficheradherentimportee/",
|
url: $("#racineWeb").val()+"Ajaximporterlisteassure/afficheradherentimportee/",
|
||||||
|
|
@ -3065,7 +3250,17 @@ function incorporer_assures_inmportes()
|
||||||
if (isConfirmed) {
|
if (isConfirmed) {
|
||||||
var div_attente = $('#div_liste_assure_importe');
|
var div_attente = $('#div_liste_assure_importe');
|
||||||
|
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
div_attente.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/incorpoerassuresimportes/",
|
url: $("#racineWeb").val()+"Ajaximporterlisteassure/incorpoerassuresimportes/",
|
||||||
|
|
@ -3085,30 +3280,6 @@ function incorporer_assures_inmportes()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
|
||||||
if(confirm_ebene(v_msg, v_msgEng))
|
|
||||||
{
|
|
||||||
var div_attente = $('#div_liste_assure_importe');
|
|
||||||
|
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
url: $("#racineWeb").val()+"Ajaximporterlisteassure/incorpoerassuresimportes/",
|
|
||||||
type: 'POST',
|
|
||||||
// data: donnees,
|
|
||||||
success: function(data) {
|
|
||||||
v_msg="Incorporation terminée avec succès!";
|
|
||||||
v_msgEng="Incorporation completed successfully!";
|
|
||||||
alert_ebene(v_msg, v_msgEng);
|
|
||||||
},
|
|
||||||
error: function(data) {
|
|
||||||
},
|
|
||||||
complete: function() {
|
|
||||||
afficher_police_id();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function afficher_police_id()
|
function afficher_police_id()
|
||||||
|
|
@ -3166,7 +3337,16 @@ function afficher_garantieadherent_entete_contrat()
|
||||||
// donnees = 'exercieReference='+exercieReference;
|
// donnees = 'exercieReference='+exercieReference;
|
||||||
donnees = 'idEntetecontrat='+idEntetecontrat;
|
donnees = 'idEntetecontrat='+idEntetecontrat;
|
||||||
|
|
||||||
div_attente.html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Chargement en cours! Veuillez patienter...' + '</span></div>');
|
div_attente.html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxplafondadherent/",
|
url: $("#racineWeb").val()+"Ajaxplafondadherent/",
|
||||||
|
|
@ -3233,7 +3413,16 @@ function listerfacturefamille()
|
||||||
|
|
||||||
donnees = 'd1='+d1+'&d2='+d2;
|
donnees = 'd1='+d1+'&d2='+d2;
|
||||||
|
|
||||||
$("#div_dossiers").html('<div style="padding-top:80px;"><img src="Bootstrap/images/loading.gif"/> <span style="font-size:15pt;">' + 'Veuillez patienter... / Please wait...' + '</span></div>');
|
$("#div_dossiers").html(`
|
||||||
|
<div class="d-flex flex-column align-items-center justify-content-center" style="padding-top:80px;">
|
||||||
|
<div class="spinner-border text-primary" role="status" style="width:3rem; height:3rem;">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
<span class="mt-3 fs-5 fw-bold">
|
||||||
|
Veuillez patienter... / Please wait...
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#racineWeb").val()+"Ajaxfacturesfamille/",
|
url: $("#racineWeb").val()+"Ajaxfacturesfamille/",
|
||||||
|
|
|
||||||
|
|
@ -634,7 +634,7 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte'];
|
||||||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||||||
|
|
||||||
<!-- Application Scripts -->
|
<!-- Application Scripts -->
|
||||||
<script src="/Js/fonctions.js?ver=2026.01.12.00"></script>
|
<script src="/Js/fonctions.js?ver=2026.01.12.01"></script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
raffraichier_gabarit();
|
raffraichier_gabarit();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user