DefaultController.php
2.5 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
<?php
namespace Cacic\RelatorioBundle\Controller;
use Doctrine\Common\Util\Debug;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Cacic\RelatorioBundle\Form\Type\CompartilhamentosType;
use Cacic\RelatorioBundle\Form\Type\PatrimonioType;
use Symfony\Component\HttpFoundation\Request;
class DefaultController extends Controller
{
/**
*
* Relatorio de Autorizacoes Cadastradas
*/
public function autorizacoesAction()
{
return $this->render( 'CacicRelatorioBundle:Default:autorizacoes.html.twig',
array( 'registros' => $this->getDoctrine()->getRepository('CacicCommonBundle:SoftwareEstacao')->gerarRelatorioAutorizacoes() )
);
}
/**
*
* Relatório de Informações Patrimoniais
*/
public function patrimonioAction()
{
$locais = $this->getDoctrine()->getRepository('CacicCommonBundle:Local')->listar();
$so = $this->getDoctrine()->getRepository('CacicCommonBundle:So')->listar();
$uorg = $this->getDoctrine()->getRepository('CacicCommonBundle:Uorg')->listar();
$conf = $this->getDoctrine()->getRepository('CacicCommonBundle:ComputadorColeta')->listarPropriedades('Patrimonio');
$sw = $this->getDoctrine()->getRepository('CacicCommonBundle:Software')->listarSoftware();
return $this->render(
'CacicRelatorioBundle:Default:patrimonio.html.twig',
array(
'locais' => $locais,
'so' => $so,
'conf' => $conf,
'softwares' => $sw,
'uorg' => $uorg
)
);
}
/**
* [RELATÓRIO] Relatório de Patrimônio gerado à partir dos filtros informados
*/
public function patrimonioRelatorioAction( Request $request )
{
$filtros = $request->get('rel_filtro_patrimonio');
$locale = $request->getLocale();
if($filtros['conf'] <> ""){
$dados = $this->getDoctrine()
->getRepository('CacicCommonBundle:ComputadorColeta')
->gerarRelatorioPatrimonio( $filtros );
}
else{
$dados = $this->getDoctrine()
->getRepository('CacicCommonBundle:ComputadorColeta')
->gerarRelatorioSemPatrimonio( $filtros );
}
return $this->render(
'CacicRelatorioBundle:Default:rel_patrimonio.html.twig',
array(
'idioma'=>$locale,
'dados' => $dados,
'menu' => (bool) strlen( $filtros['conf'])
)
);
}
}