a
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user