Commit 6dec583006ce1b631c6b426cbdd522eee2a4e09e
Exists in
master
and in
1 other branch
Merge branch 'master' of https://github.com/lightbase/cacic
Showing
1 changed file
with
2 additions
and
3 deletions
Show diff stats
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 | ... | ... |