D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
rosario
/
adm
/
app
/
cpgre
/
Controllers
/
Filename :
VerMixModal.php
back
Copy
<?php namespace App\cpgre\Controllers; if (!defined('URL')) { header("Location: /"); exit(); } /** * Description of VerRebateModal * * @copyright (c) year, Carlos Marques - */ class VerMixModal { private $Dados; private $DadosItens; private $DadosId; public function verMix($DadosId ) { $this->DadosId = $DadosId; if (!empty($this->DadosId)) { $verMix= new \App\gre\Models\ModMixVer(); $this->Dados['dadosMix'] = $verMix->verMix($this->DadosId); // var_dump($this->Dados['dadosRebate']); } $carregarView = new \App\cpgre\core\ConfigView("cpgre/Views/Analise_Mix/verMixModal", $this->Dados); $carregarView->renderizarListar(); } }