FaturamentoController.php
13.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<?php
namespace Cacic\RelatorioBundle\Controller;
use Cacic\CommonBundle\Entity\ComputadorColetaRepository;
use Ddeboer\DataImport\ValueConverter\ArrayValueConverterMap;
use Ddeboer\DataImport\ValueConverter\CharsetValueConverter;
use Doctrine\Common\Util\Debug;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Cacic\CommonBundle\Form\Type\LogPesquisaType;
use Ddeboer\DataImport\Workflow;
use Ddeboer\DataImport\Reader\ArrayReader;
use Ddeboer\DataImport\Writer\CsvWriter;
use Ddeboer\DataImport\ValueConverter\CallbackValueConverter;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
use Cacic\CommonBundle\Form\Type\ComputadorConsultaType;
class FaturamentoController extends Controller {
//Página inicial faturamento
public function faturamentoAction(Request $request) {
$locale = $request->getLocale();
$form = $this->createForm( new LogPesquisaType() );
return $this->render( 'CacicRelatorioBundle:Faturamento:faturamento.html.twig',
array(
'locale'=> $locale,
'form' => $form->createView()
)
);
}
//Página que exibe todas as regionais faturamento
public function faturamentoRelatorioAction(Request $request){
$locale = $request->getLocale();
$form = $this->createForm( new LogPesquisaType() );
if ( $request->isMethod('POST') )
{
$form->bind( $request );
$data = $form->getData();
$filtroLocais = array(); // Inicializa array com locais a pesquisar
foreach ( $data['idLocal'] as $locais ) {
array_push( $filtroLocais, $locais->getIdLocal() );
}
$logs = $this->getDoctrine()->getRepository( 'CacicCommonBundle:LogAcesso')
->pesquisar( $data['dtAcaoInicio'], $data['dtAcaoFim'], $filtroLocais);
$TotalnumComp = 0;
foreach ($logs as $cont ){
$TotalnumComp += $cont['numComp'];
}
}
return $this->render( 'CacicRelatorioBundle:Faturamento:faturamentoResultado.html.twig',
array(
'idioma'=> $locale,
'form' => $form->createView(),
'data' =>$data,
'logs' => ( isset( $logs ) ? $logs : null ),
'totalnumcomp' => $TotalnumComp
)
);
}
//botão csv de todas faturamento
public function faturamentoCsvAction(Request $request)
{
$em = $this->getDoctrine()->getManager();
$form = $this->createForm( new LogPesquisaType() );
$form->bind( $request );
$data = $form->getData();
$filtroLocais = array(); // Inicializa array com locais a pesquisar
foreach ( $data['idLocal'] as $locais ) {
array_push( $filtroLocais, $locais->getIdLocal() );
}
$printers = $em->getRepository( 'CacicCommonBundle:LogAcesso')
->faturamentoCsv( $data['dtAcaoInicio'], $data['dtAcaoFim'], $filtroLocais);
// Gera CSV
$reader = new ArrayReader($printers);
// Create the workflow from the reader
$workflow = new Workflow($reader);
$workflow->addValueConverter("reader",new CharsetValueConverter('UTF-8',$reader));
// Add the writer to the workflow
$tmpfile = tempnam(sys_get_temp_dir(), 'Faturamento');
$file = new \SplFileObject($tmpfile, 'w');
$writer = new CsvWriter($file);
$writer->writeItem(array('Local', 'Subrede','Endereço IP','Estações'));
$workflow->addWriter($writer);
// Process the workflow
$workflow->process();
// Retorna o arquivo
$response = new BinaryFileResponse($tmpfile);
$response->headers->set('Content-Type', 'text/csv');
$response->headers->set('Content-Disposition', 'attachment; filename="Faturamento.csv"');
$response->headers->set('Content-Transfer-Encoding', 'binary');
return $response;
}
//Página que exibe cada regional faturamento
public function listarAction( Request $request, $idRede) {
$dataInicio = $request->get('dtAcaoInicio');
$dataFim = $request->get('dtAcaoFim');
$locale = $request->getLocale();
$dados = $this->getDoctrine()
->getRepository('CacicCommonBundle:LogAcesso')
->gerarRelatorioRede($filtros = array(),$idRede, $dataInicio, $dataFim);
return $this->render(
'CacicRelatorioBundle:Faturamento:listar.html.twig',
array(
'rede'=> $dados[0]['nmRede'],
'idioma'=> $locale,
'dados' => ( isset( $dados ) ? $dados : null ),
'idRede' => $idRede,
'dtAcaoInicio' => $dataInicio,
'dtAcaoFim' => $dataFim
)
);
}
//Botão csv cada faturamento
public function listarCsvAction( Request $request) {
$dataInicio = $request->get('dataInicio');
$dataFim = $request->get('dataFim');
$idRede = $request->get('idRede');
$printers = $this->getDoctrine()
->getRepository('CacicCommonBundle:LogAcesso')
->listarCsv($filtros = array(),$idRede, $dataInicio , $dataFim);
// Gera CSV
$reader = new ArrayReader($printers);
// Create the workflow from the reader
$workflow = new Workflow($reader);
$workflow->addValueConverter("reader",new CharsetValueConverter('UTF-8',$reader));
// Add the writer to the workflow
$tmpfile = tempnam(sys_get_temp_dir(), 'Faturamento');
$file = new \SplFileObject($tmpfile, 'w');
$writer = new CsvWriter($file);
$writer->writeItem(array('Computador','Mac Address','Endereço IP','Sistema Operacional','Local','Subrede','IP Subrede','Data/Hora da Última Coleta'));
$workflow->addWriter($writer);
// Process the workflow
$workflow->process();
// Retorna o arquivo
$response = new BinaryFileResponse($tmpfile);
$response->headers->set('Content-Type', 'text/csv');
$response->headers->set('Content-Disposition', 'attachment; filename="Faturamento_subrede.csv"');
$response->headers->set('Content-Transfer-Encoding', 'binary');
return $response;
}
//Página inicial inativos
public function inativosAction(Request $request) {
$locale = $request->getLocale();
$form = $this->createForm( new LogPesquisaType() );
return $this->render( 'CacicRelatorioBundle:Faturamento:inativos.html.twig',
array(
'locale'=> $locale,
'form' => $form->createView()
)
);
}
//Página que exibe todas as regionais inativos
public function inativosRelatorioAction(Request $request){
$locale = $request->getLocale();
$form = $this->createForm( new LogPesquisaType() );
if ( $request->isMethod('POST') )
{
$form->bind( $request );
$data = $form->getData();
$filtroLocais = array(); // Inicializa array com locais a pesquisar
foreach ( $data['idLocal'] as $locais ) {
array_push( $filtroLocais, $locais->getIdLocal() );
}
$logs = $this->getDoctrine()->getRepository( 'CacicCommonBundle:Computador')
->pesquisarInativos( $data['dtAcaoInicio'], $data['dtAcaoFim'], $filtroLocais);
$TotalnumComp = 0;
foreach ($logs as $cont ){
$TotalnumComp = $cont['numComp']+$TotalnumComp;
}
}
return $this->render( 'CacicRelatorioBundle:Faturamento:inativosResultado.html.twig',
array(
'idioma'=> $locale,
'form' => $form->createView(),
'data' => $data,
'totalnumcomp' =>$TotalnumComp,
'logs' => ( isset( $logs ) ? $logs : null )
)
);
}
//Página que exibe cada regional inativos
public function listarInativosAction( Request $request, $idRede) {
$dataInicio = $request->get('dtAcaoInicio');
$dataFim = $request->get('dtAcaoFim');
$locale = $request->getLocale();
$dados = $this->getDoctrine()
->getRepository('CacicCommonBundle:Computador')
->gerarRelatorioRede($filtros = array(),$idRede, $dataInicio, $dataFim);
return $this->render( 'CacicRelatorioBundle:Faturamento:listarInativos.html.twig',
array(
'rede'=> $dados[0]['nmRede'],
'idioma'=> $locale,
'dados' => ( isset( $dados ) ? $dados : null ),
'idRede' => $idRede,
'dtAcaoInicio' => $dataInicio,
'dtAcaoFim' => $dataFim
)
);
}
//botão csv de cada inativos
public function listarInativosCsvAction ( Request $request) {
$dataInicio = $request->get('dtAcaoInicio');
$dataFim = $request->get('dtAcaoFim');
$idRede = $request->get('idRede');
$printers = $this->getDoctrine()
->getRepository('CacicCommonBundle:Computador')
->listarInativosCsv($filtros = array(),$idRede, $dataInicio, $dataFim);
// Gera CSV
$reader = new ArrayReader($printers);
// Create the workflow from the reader
$workflow = new Workflow($reader);
$workflow->addValueConverter("reader",new CharsetValueConverter('UTF-8',$reader));
// Add the writer to the workflow
$tmpfile = tempnam(sys_get_temp_dir(), 'Máquinas sem Coletas');
$file = new \SplFileObject($tmpfile, 'w');
$writer = new CsvWriter($file);
$writer->writeItem(array('Computador', 'Mac Address','Endereço IP','Sistema Operacional','Local','Subrede','IP Subrede'));
$workflow->addWriter($writer);
// Process the workflow
$workflow->process();
// Retorna o arquivo
$response = new BinaryFileResponse($tmpfile);
$response->headers->set('Content-Type', 'text/csv');
$response->headers->set('Content-Disposition', 'attachment; filename="Não_Coletadas_subrede.csv"');
$response->headers->set('Content-Transfer-Encoding', 'binary');
return $response;
}
// botão csv todos inativo
public function inativosCsvAction (Request $request)
{
$em = $this->getDoctrine()->getManager();
$form = $this->createForm( new LogPesquisaType() );
$form->bind( $request );
$data = $form->getData();
$filtroLocais = array(); // Inicializa array com locais a pesquisar
foreach ( $data['idLocal'] as $locais ) {
array_push( $filtroLocais, $locais->getIdLocal() );
}
$printers = $em->getRepository( 'CacicCommonBundle:Computador')
->inativosCsv( $data['dtAcaoInicio'], $data['dtAcaoFim'], $filtroLocais);
// Gera CSV
$reader = new ArrayReader($printers);
// Create the workflow from the reader
$workflow = new Workflow($reader);
$workflow->addValueConverter("reader",new CharsetValueConverter('UTF-8',$reader));
// Add the writer to the workflow
$tmpfile = tempnam(sys_get_temp_dir(), 'Máquinas sem Coletas');
$file = new \SplFileObject($tmpfile, 'w');
$writer = new CsvWriter($file);
$writer->writeItem(array('Local', 'Subrede','Endereço IP','Estações'));
$workflow->addWriter($writer);
// Process the workflow
$workflow->process();
// Retorna o arquivo
$response = new BinaryFileResponse($tmpfile);
$response->headers->set('Content-Type', 'text/csv');
$response->headers->set('Content-Disposition', 'attachment; filename="Não_Coletadas.csv"');
$response->headers->set('Content-Transfer-Encoding', 'binary');
return $response;
}
/**
* Search computer with params
*
* @param Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function computadorAction( Request $request )
{
$locale = $request->getLocale();
$data = $request->query->all();
$form = $this->createForm( new ComputadorConsultaType() );
$computadores = $this->getDoctrine()->getRepository( 'CacicCommonBundle:Computador')
->selectIp($data['teIpComputador'],$data['nmComputador'] ,$data['teNodeAddress'] );
return $this->render( 'CacicCommonBundle:Computador:buscar.html.twig',
array(
'local'=>$locale ,
'form' => $form->createView(),
'computadores' => ( $computadores )
)
);
}
}