Commit 6dec583006ce1b631c6b426cbdd522eee2a4e09e

Authored by Ecio Virgilio Eloi Silva
2 parents dde0c432 cfac238b
Exists in master and in 1 other branch 3.1

Merge branch 'master' of https://github.com/lightbase/cacic

src/Cacic/RelatorioBundle/Controller/FaturamentoController.php
... ... @@ -144,15 +144,14 @@
144 144 //Botão csv cada faturamento
145 145 public function listarCsvAction( Request $request) {
146 146  
147   - $dataInicio = $request->get('dtAcaoInicio');
148   - $dataFim = $request->get('dtAcaoFim');
  147 + $dataInicio = $request->get('dataInicio');
  148 + $dataFim = $request->get('dataFim');
149 149 $idRede = $request->get('idRede');
150 150  
151 151 $printers = $this->getDoctrine()
152 152 ->getRepository('CacicCommonBundle:LogAcesso')
153 153 ->listarCsv($filtros = array(),$idRede, $dataInicio , $dataFim);
154 154  
155   -
156 155 // Gera CSV
157 156 $reader = new ArrayReader($printers);
158 157  
... ...