Просмотр исходного кода

[Backend] Export comptable

feature/tableau_edition_avancee
Fab 4 лет назад
Родитель
Сommit
5f4fd8b4d4
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      ShopBundle/Services/CsvGenerator.php

+ 2
- 2
ShopBundle/Services/CsvGenerator.php Просмотреть файл

@@ -37,7 +37,7 @@ class CsvGenerator
$this->titleDocument = 'csv_file';
$this->convertEncoding = false ;
$this->fromEncoding = 'UTF-8' ;
$this->toEncoding = 'UTF-8' ;
$this->toEncoding = 'ISO-8859-1' ;
$this->delimiter = ';' ;
}

@@ -132,7 +132,7 @@ class CsvGenerator
$response = new StreamedResponse(function () {
$this->createCsv('php://output');
});
$response->headers->set('Content-Encoding', 'UTF-8');
$response->headers->set('Content-Encoding', $this->toEncoding);
$response->headers->set('Content-Type', 'application/force-download');
$response->headers->set('Content-Disposition', 'attachment; filename="'.$this->titleDocument.'.csv"');
return $response;

Загрузка…
Отмена
Сохранить