a
This commit is contained in:
parent
cbe154e19c
commit
904b4cac9c
|
|
@ -3358,9 +3358,43 @@ function lister_ged_police()
|
|||
|
||||
function imprimer_liste_assures()
|
||||
{
|
||||
alert("imprimer_liste_assures");
|
||||
|
||||
$('#div_export_assures').html('');
|
||||
|
||||
$("#btn_liste_assures").click();
|
||||
}
|
||||
|
||||
function imprimer_liste_assures_date()
|
||||
{
|
||||
dateAnalyse = $("#dateAnalyse").val();
|
||||
|
||||
if (dateAnalyse<=" ")
|
||||
{
|
||||
v_msg="Veuillez indiquer une date!";
|
||||
v_msgEng="Please enter a date!";
|
||||
alert_ebene(v_msg, v_msgEng);
|
||||
|
||||
$("#dateAnalyse").focus();
|
||||
return;
|
||||
}
|
||||
|
||||
donnees = 'dateAnalyse='+dateAnalyse;
|
||||
|
||||
var div_export = $('#div_export_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>');
|
||||
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaximprimerlisteassure/",
|
||||
type: 'POST',
|
||||
data: donnees,
|
||||
success: function(data)
|
||||
{
|
||||
div_export.html(data);
|
||||
},
|
||||
error : function(resultat, statut, erreur)
|
||||
{
|
||||
},
|
||||
complete: function(data)
|
||||
{
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -633,7 +633,7 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte'];
|
|||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||||
|
||||
<!-- Application Scripts -->
|
||||
<script src="/Js/fonctions.js?ver=2026.01.05.14"></script>
|
||||
<script src="/Js/fonctions.js?ver=2026.01.05.15"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
raffraichier_gabarit();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user