public function edit()
 {
     //die();
     $id = $this->getParam('id');
     $modelstatusprod = new statusProdModel();
     $resstatusprod = $modelstatusprod->getStatus('codigo=' . $id);
     $this->smarty->assign('registro', $resstatusprod[0]);
     $this->smarty->assign('title', 'Editar Status');
     //call the smarty
     $this->smarty->display('statusprod/edit.tpl');
 }
 public function edit()
 {
     //die();
     $id = $this->getParam('id');
     $modelproduto = new produtoModel();
     $resproduto = $modelproduto->getProduto('p.codigo=' . $id);
     $this->smarty->assign('registro', $resproduto[0]);
     //chama status
     $model_statusprod = new statusProdModel();
     $status_res = $model_statusprod->getStatus('');
     //Full table Scan :( or :)
     //send the records to template sytem
     $this->smarty->assign('listastatusprod', $status_res);
     //chama depto
     $model_deptoprod = new departamentoModel();
     $dpto_res = $model_deptoprod->getDepartamento('');
     $this->smarty->assign('listadeptoprod', $dpto_res);
     $this->smarty->assign('title', 'Editar Produto');
     //call the smarty
     $this->smarty->display('produto/edit.tpl');
 }