Commit d0db761497825ebf0c3d603feb7757d0934e151d
1 parent
c9195290
Exists in
master
and in
1 other branch
Correção na apresentação do CSV no 'faturamento' e 'sem coletas'. E adição do bo…
…tão para a apresentação do CSV onde é mostrado as máquinas de cada subrede.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/Cacic/CommonBundle/Entity/ComputadorRepository.php
... | ... | @@ -404,7 +404,7 @@ class ComputadorRepository extends EntityRepository |
404 | 404 | // Monta a Consulta básica... |
405 | 405 | $query = $this->createQueryBuilder('comp') |
406 | 406 | |
407 | - ->select( 'comp.nmComputador', 'comp.teNodeAddress', 'comp.teIpComputador', 'so.sgSo', 'loc.nmLocal', 'rede.nmRede,rede.teIpRede') | |
407 | + ->select( 'comp.nmComputador', 'comp.teNodeAddress', 'comp.teIpComputador', 'so.sgSo', 'loc.nmLocal', 'rede.nmRede','rede.teIpRede') | |
408 | 408 | ->innerJoin('comp.idSo', 'so') |
409 | 409 | ->innerJoin('comp.idRede', 'rede') |
410 | 410 | ->innerJoin('rede.idLocal', 'loc'); | ... | ... |