a
This commit is contained in:
@@ -3406,4 +3406,39 @@ function exporter_liste_assures()
|
||||
$("#btn_exporter_liste_assures").click();
|
||||
}
|
||||
|
||||
function exporter_liste_assures_date()
|
||||
{
|
||||
dateAnalyse = $("#dateAnalyse_export").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_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>');
|
||||
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxexporterlisteassure/",
|
||||
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