<?php include_once '../../includes.sys/ini.php'; include_once '../../includes.sys/metodos.php'; include_once '../DAO/CadastroDAO.php'; include_once '../Cadastro.class.php'; checkUserAuth(EXTERNAL_ROOT_PORTAL . '/index.php?error=true'); $lista = new Lista(); $DAO = new ListaDao(); $lista->setEmpresa($_POST['empresa']); $lista->setObra($_POST['obra']); $lista->setFaseDoProjeto($_POST['fase_projeto']); $lista->setDisciplina($_POST['disciplina']); $lista->setTipoDeDocumento($_POST['tipodocumento']); $lista->setStatus($_POST['status']); if ($lista->getEmpresa() == 0) { $empresa = ''; } else { $empresa = " AND A.id_empresa = " . $lista->getEmpresa(); } if ($lista->getObra() == 0) { $obra = ''; } else { $obra = " AND A.id_obra = " . $lista->getObra(); } if ($lista->getFaseDoProjeto() == 0) { $fase = ''; } else { $fase = " AND A.id_fase = " . $lista->getFaseDoProjeto(); } if ($lista->getDisciplina() == 0) {
<?php include_once '../../includes.sys/ini.php'; include_once '../../includes.sys/metodos.php'; include_once '../DAO/CadastroDAO.php'; include_once '../Cadastro.class.php'; checkUserAuth(EXTERNAL_ROOT_PORTAL . '/index.php?error=true'); $lista = new Lista(); $DAO = new ListaDao(); connectSQL(); $lista->setEmpresa($_GET['empresa']); $lista->setObra($_GET['obra']); $lista->setFaseDoProjeto($_GET['fase']); $lista->setDisciplina($_GET['disciplina']); $lista->setTipoDeDocumento($_GET['tipo']); $lista->setStatus($_GET['status']); if ($lista->getEmpresa() == 0) { $empresa = ''; $filtro_empresa = 'Todas'; } else { $empresa = " A.id_empresa = " . $lista->getEmpresa() . " AND"; $query = mysql_query("SELECT nome FROM " . MYSQL_BASE_EMPRESAS . " WHERE id =" . $lista->getEmpresa()); while ($row = mysql_fetch_array($query)) { $filtro_empresa = $row['nome']; } } if ($lista->getObra() == 0) { $obra = ''; $filtro_obra = 'Todos'; } else { $obra = " A.id_obra = " . $lista->getObra() . " AND";