Correction téléchargement liasse en xls

This commit is contained in:
Michael RICOIS 2011-08-16 10:47:11 +00:00
parent 267d9c931b
commit 3e34b3e828
3 changed files with 15 additions and 2 deletions

View File

@ -54,7 +54,7 @@
'controller' => 'finance',
'action' => 'liassexls',
'siret' => $this->siret,
'unite' => $this->unit,
'unite' => $this->unite,
'type' => $this->champType,
'date' => $this->dateCloture,
))?>" id="xls">Exporter en fichier Excel.</a>

View File

@ -1,5 +1,5 @@
<?php if (!empty($this->file)) { ?>
<a href="fichier/liasse/<?=$this->file?>" target="_blank">Télécharger le fichier excel.</a>
<a href="/fichier/liasse/<?=$this->file?>" target="_blank">Télécharger le fichier excel.</a>
<?php } else { ?>
Erreur lors de la construction du fichier.
<?php }?>

View File

@ -109,6 +109,19 @@ $(document).ready( function()
return false;
});
$('a#xls').live('click', function(e){
e.preventDefault();
var objet = $(this).parent();
objet.html('Construction du fichier...');
var url = $(this).attr('href');
$.post( url, function (data, textStatus) {
if( data=='' || data=='FALSE' || textStatus=='timeout' ) {
data = 'La construction du fichier a échoué.<br/>';
}
objet.html(data);
});
});
});