Correction téléchargement liasse en xls
This commit is contained in:
parent
267d9c931b
commit
3e34b3e828
@ -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>
|
||||
|
@ -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 }?>
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user