D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
idoso_ant
/
adm
/
app
/
gre
/
Controllers
/
Filename :
FecharFaturaManual.php
back
Copy
<?php namespace App\gre\Controllers; if (!defined('URL')) { header("Location: /"); exit(); } /** * Description of FecharFaturaManual * * @copyright (c) year, Carlos Marques - CM */ class FecharFaturaManual { private $DadosId; public function fecFatMan($DadosId = null) { $this->Dados = filter_input_array(INPUT_GET, FILTER_DEFAULT); $this->DadosId = (int) $DadosId; if (!empty($this->Dados)) { // var_dump($this->Dados); $fecharFatura = new \App\gre\Models\GreFecharFaturaManual(); $fecharFatura->fecFatMan($this->Dados); } $UrlDestino = URLADM . 'carregar-fecha-manual-js/listar'; header("Location: $UrlDestino"); } }