Beispiel #1
0
include_once INTERNAL_ROOT_PORTAL . '/includes.sys/metodos.php';
include_once INTERNAL_ROOT_PORTAL . '/medicao/DAO/AcompanhamentoDAO.php';
include_once INTERNAL_ROOT_PORTAL . '/medicao/Acompanhamento.class.php';
checkUserAuth(EXTERNAL_ROOT_PORTAL . '/index.php?error=true');
include_once INTERNAL_ROOT_PORTAL . '/head.php';
$acesso = listarAcesso();
if (!in_array(139, $acesso)) {
    echo '<script language= "JavaScript">location.href="' . EXTERNAL_ROOT_PORTAL . '/modulos.php";</script>';
}
$id = limpaTexto($_GET['id']);
$acompanhamento = new Acompanhamento();
//Verifica se a opcao de salvar foi iniciada
if (!empty($_POST['cmd']) && $_POST['cmd'] == 'editar') {
    $acompanhamento->editar($_POST);
} else {
    $DAO = new AcompanhamentoDAO();
    $resultado = $DAO->listar("SELECT * FROM " . MYSQL_BASE_MEDICAO_ACOMPANHAMENTO . " WHERE principal = 'S' AND id=" . $id);
    if ($resultado) {
        foreach ($resultado as $item) {
            $acompanhamento->setGrupo($item['grupo']);
            $acompanhamento->setReembolso($item['reembolso']);
            $acompanhamento->setRemuneracao($item['remuneracao']);
            $acompanhamento->setCriado($item['criado']);
        }
    } else {
        $acompanhamento->setGrupo(0);
        $acompanhamento->setReembolso(0);
        $acompanhamento->setRemuneracao(0);
        $acompanhamento->setCriado("");
    }
}
Beispiel #2
0
<?php

include_once '../../includes.sys/ini.php';
include_once '../../includes.sys/metodos.php';
include_once '../../medicao/DAO/AcompanhamentoDAO.php';
include_once '../../medicao/Acompanhamento.class.php';
include_once '../DAO/MedicaoOPRDAO.php';
include "../../lib/libchart/libchart/classes/libchart.php";
$acompanhamento = new Acompanhamento();
$DAO = new AcompanhamentoDAO();
$char_bar = new VerticalBarChart();
$medicao = new MedicaoOPR();
$acompanhamento->setAno($_POST['ano']);
$acompanhamento->setGrupo($_POST['grupo']);
$acompanhamento->setRemuneracao($_POST['remuneracao']);
$acompanhamento->setReembolso($_POST['reembolso']);
$acompanhamento->setGrafico($_POST['grafico']);
$query = "SELECT *, SUM(remuneracao), SUM(reembolso) FROM " . MYSQL_BASE_MEDICAO_ACOMPANHAMENTO . " WHERE principal = 'S' AND grupo IN (" . $acompanhamento->getGrupo() . ")";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>Cons&oacute;rcio Troncal - Bel&eacute;m (OPR)</title>
	<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15" />
	<style> 
	.FonteTexto{
	font-size: 10px;
	
	}
	 </style>
</head>
Beispiel #3
0
<?php

include_once '../../includes.sys/ini.php';
include_once '../../includes.sys/metodos.php';
include_once '../DAO/AcompanhamentoDAO.php';
checkUserAuth(EXTERNAL_ROOT_PORTAL . '/index.php?error=true');
include_once '../../head.php';
$acesso = listarAcesso();
if (!in_array(292, $acesso)) {
    echo '<script language= "JavaScript">location.href="' . EXTERNAL_ROOT_PORTAL . '/projeto/documentos/fase_projeto.php";</script>';
}
$DAO = new AcompanhamentoDAO();
if (!empty($_GET['cmd']) && $_GET['cmd'] == 'del') {
    $id = ValidateInteger(INPUT_GET, 'id');
    $retorno = $DAO->Deletar($id);
    if ($retorno == 1) {
        echo '<script language= "JavaScript">alert("Categoria removido com sucesso");</script>';
        echo '<script language= "JavaScript">location.href="index.php";</script>';
    } else {
        print_r($retorno);
    }
}
?>
	<!-- topbar ends -->
		<div class="container-fluid">
		<div class="row-fluid">
				
			<!-- left menu starts -->
			<div class="span2 main-menu-span">
				<?php 
include_once '../menu.php';
Beispiel #4
0
<?php

include_once '../../includes.sys/ini.php';
include_once '../../includes.sys/metodos.php';
include_once '../DAO/AcompanhamentoDAO.php';
checkUserAuth(EXTERNAL_ROOT_PORTAL . '/index.php?error=true');
include_once '../../head.php';
$acesso = listarAcesso();
if (!in_array(292, $acesso)) {
    echo '<script language= "JavaScript">location.href="' . EXTERNAL_ROOT_PORTAL . '/projeto/documentos/fase_projeto.php";</script>';
}
$DAO = new AcompanhamentoDAO();
if (!empty($_GET['cmd']) && $_GET['cmd'] == 'del') {
    $id = ValidateInteger(INPUT_GET, 'id');
    $retorno = $DAO->Deletar($id);
    if ($retorno == 1) {
        echo '<script language= "JavaScript">alert("Categoria removido com sucesso");</script>';
        echo '<script language= "JavaScript">location.href="index.php";</script>';
    } else {
        print_r($retorno);
    }
}
?>
	<!-- topbar ends -->
		<div class="container-fluid">
		<div class="row-fluid">
				
			<!-- left menu starts -->
			<div class="span2 main-menu-span">
				<?php 
include_once '../menu.php';
Beispiel #5
0
<?php

include_once '../../includes.sys/ini.php';
include_once INTERNAL_ROOT_PORTAL . '/includes.sys/metodos.php';
include_once INTERNAL_ROOT_PORTAL . '/medicao/DAO/AcompanhamentoDAO.php';
include_once INTERNAL_ROOT_PORTAL . '/medicao/Acompanhamento.class.php';
checkUserAuth(EXTERNAL_ROOT_PORTAL . '/index.php?error=true');
include_once INTERNAL_ROOT_PORTAL . '/head.php';
$acesso = listarAcesso();
if (!in_array(141, $acesso)) {
    echo '<script language= "JavaScript">location.href="' . EXTERNAL_ROOT_PORTAL . '/modulos.php";</script>';
}
$acompanhamento = new Acompanhamento();
$DAO = new AcompanhamentoDAO();
if (!empty($_GET['cmd']) && $_GET['cmd'] == 'del') {
    $id = ValidateInteger(INPUT_GET, 'id');
    $retorno = $DAO->Deletar($id);
    if ($retorno == 1) {
        echo '<script language= "JavaScript">alert("Registro removido com sucesso");</script>';
        echo '<script language= "JavaScript">location.href="index.php";</script>';
    } else {
        print_r($retorno);
    }
}
?>
	<!-- topbar ends -->
		<div class="container-fluid">
		<div class="row-fluid">
				
			<!-- left menu starts -->
			<div class="span2 main-menu-span">
Beispiel #6
0
 function listarFuncao($id = null)
 {
     $DAO = new AcompanhamentoDAO();
     $resultado = $DAO->Listar("SELECT * FROM " . MYSQL_BASE_CONTRATO_ITEM . " WHERE tipo = 1 ");
     foreach ($resultado as $item) {
         if ($id == $item['id']) {
             echo '<option selected="selected" value="' . $item['id'] . '">' . $item['nome'] . '</option>';
         } else {
             echo '<option value="' . $item['id'] . '">' . $item['nome'] . '</option>';
         }
     }
 }