protected function GenerateResponse() { try { $this->response = PaquetesController::Lista(isset($_GET['activo']) ? $_GET['activo'] : null, isset($_GET['id_empresa']) ? $_GET['id_empresa'] : null, isset($_GET['id_sucursal']) ? $_GET['id_sucursal'] : null); } catch (Exception $e) { //Logger::error($e); throw new ApiException($this->error_dispatcher->invalidDatabaseOperation($e->getMessage())); } }
<?php define("BYPASS_INSTANCE_CHECK", false); require_once "../../../server/bootstrap.php"; $page = new GerenciaComponentPage(); $page->addComponent(new TitleComponent("Paquetes")); $page->addComponent(new MessageComponent("Lista de paquetes ")); $tabla = new TableComponent(array("nombre" => "Nombre", "margen_utilidad" => "Margen_utilidad", "precio" => "Precio", "descuento" => "Descuento", "foto_paquete" => "Foto de paquete", "activo" => "Activo"), PaquetesController::Lista()); function funcion_activo($activo) { return $activo ? "Activo" : "Inactivo"; } $tabla->addColRender("activo", "funcion_activo"); $tabla->addOnClick("id_paquete", "(function(a){ window.location = 'paquetes.detalle.php?pid=' + a; })"); $page->addComponent($tabla); $page->render();