예제 #1
0
							<div class="uk-width-1-1 uk-panel uk-navbar" style="border-radius: 0px;margin-top: -15px; margin-left: 0px; margin-right: 0px; border-width: 0px; border-style: none none none solid; border-color: -moz-use-text-color; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none;  padding-left: 5px;" >
								<ul class="uk-subnav uk-subnav-line"  style=" ">
									<li class="uk-active"><a href=""><i class="uk-icon-flag"></i> <?php 
    if (isset($_GET['mod'])) {
        echo $_GET['mod'];
    }
    ?>
</a></li>
									<?php 
    if (isset($_GET['mod']) and strpos($_GET['mod'], 'cad_') === false) {
    } else {
        if (isset($_GET) and isset($_GET['mod'])) {
            $sql = new sql();
            $valores = $sql->min_max($_GET['mod'], str_replace("cad_", "cod_", $_GET['mod']));
            $menus = new menus();
            $menus->submenu($valores, $_GET['id']);
            $menus->menu_exportar('grid');
        }
    }
    ?>
								</ul>
							
							</div>	
						<div class="uk-width-1-1" >
							<div class="uk-grid" style="padding:15px" >
								<div class="uk-width-1-1" id='arquivo_gerado' style="margin-top: 20px;text-align: center; padding: 0px;"></div>	
								<div class="uk-width-1-1" style="padding-left: 10px;" >
							<?php 
    if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id'])) {
        if (isset($_POST) and $_POST != null and isset($_GET['act']) and $_GET['act'] == 'cadastros') {
            $keys = array_keys($_POST);
예제 #2
0
 function menu()
 {
     $menus = new menus();
     $sql = new sql();
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['act'] == "cadastros") {
         //elementos de pesquisa
         //var_dump($_GET);
         $tabela = $_GET['mod'];
         //include esqueleto cadastro
         if ($tabela == 'cad_itens') {
             $id = "cod_item";
             $valores = $sql->min_max($tabela, $id);
             $menus->submenu_cad_itens($valores, $id);
         } else {
             $id = str_replace("cad_", "cod_", $_GET['mod']);
             $valores = $sql->min_max($tabela, $id);
             $menus->submenu($valores, $id);
         }
     }
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['id'] == "" and $_GET['act'] == "pesquisa") {
         echo "<li  data-uk-tooltip={pos:'right'} title='Novo'><a href='?act=cadastros&mod=" . $_GET['mod'] . "&id=' class='uk-button-link ' style=''><i class='uk-icon-file-o'></i> Incluir novo cadastro</a> </li>";
         $menus->menu_exportar('grid', 0);
     }
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['id'] == "" and $_GET['act'] == "lancamento" and $_GET['mod'] == "gerar_depreciacao") {
         $menus->menu_gerar_depreciacao(4);
     }
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['id'] == "" and $_GET['act'] == "lancamento" and $_GET['mod'] == "baixar") {
         $menus->menu_baixa(4);
     }
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['id'] == "" and $_GET['act'] == "lancamento" and $_GET['mod'] == "reavaliar") {
         $menus->menu_reavaliar(4);
     }
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['id'] == "" and $_GET['act'] == "relatorios" and $_GET['mod'] == "mapa_ativo") {
         $filtro = 1;
         $menus = new menus();
         $relatorios = new relatorios();
         $relatorios->filtros($filtro);
         $menus->menu_exportar('grid_relatorio', '');
     }
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['id'] == "" and $_GET['act'] == "relatorios" and $_GET['mod'] == "aquisicoes_baixas") {
         $filtro = 2;
         $menus = new menus();
         $relatorios = new relatorios();
         $relatorios->filtros($filtro);
         $menus->menu_exportar('grid_relatorio', '');
     }
     if (isset($_GET['act']) and isset($_GET['mod']) and isset($_GET['id']) and $_GET['id'] == "" and $_GET['act'] == "relatorios" and $_GET['mod'] == "depreciacao") {
         $filtro = 3;
         $menus = new menus();
         $relatorios = new relatorios();
         $relatorios->filtros($filtro);
         $menus->menu_exportar('grid_relatorio', '');
     }
 }