X-Git-Url: https://git.llucax.com/mecon/yatta.git/blobdiff_plain/763af8f8638f2e6c8833c1faf01f0dfa76259774..036dc9d444917fb1e9183fc8896a5e4962ddc47c:/sistema/www/procesos_popup.php
diff --git a/sistema/www/procesos_popup.php b/sistema/www/procesos_popup.php
index bc03c13..5e44298 100644
--- a/sistema/www/procesos_popup.php
+++ b/sistema/www/procesos_popup.php
@@ -25,24 +25,19 @@ $Id$
-----------------------------------------------------------------------------*/
//Require Once {{{
-require_once 'HTML/Page.php';
-require_once 'HTML/Table.php';
+//HTML {{{
+require_once 'MECON/HTML/Tabla.php';
require_once 'MECON/HTML/Link.php';
require_once 'MECON/HTML/Image.php';
-require_once 'YATTA/Proceso.php';
+//}}}
+//YATTA {{{
+require_once 'YATTA/Controlador.php';
+//}}}
//}}}
//Creo los objetos necesarios {{{
-$PAGE =& new HTML_Page(array ('doctype' => 'HTML 4.01 Transitional',
- 'charset' => 'iso-8859-1',
- 'lineend' => 'unix',
- 'language' => 'es',
- 'cache' => 'false',
- 'simple' => 'true'));
-$PAGE->addStyleSheet('/sistemas/yatta/css/yatta.css');
-$PAGE->addStyleSheet('/MECON/css/marco.css');
-$TABLA=& new HTML_Table('width="370"');
-$PROCESO =& new YATTA_Proceso;
+$TABLA=& new MECON_HTML_Tabla('width="400"');
+$PROCESO =& new YATTA_Controlador;
//}}}
//Obtengo la info que se pasa por get {{{
@@ -50,45 +45,36 @@ $id = (@$_REQUEST['id']) ? $_REQUEST['id'] : null;
//}}}
//Obtengo la informacion del proceso {{{
-$PROCESO->owner = $_SESSION['usuario'];
-$PROCESO->id = $id;
-$res = $PROCESO->buscar($DB, MECON_DBO_AND, ' id ASC');
-if (PEAR::isError($res)) {
- die('Error: ' . $res->getMessage() . "\n");
-}
-$res = $PROCESO->cargar($res);
+$PROCESO = $PROCESO->obtenerProcesosUsuario($DB, $_SESSION['usuario'], $id);
//}}}
//Creo las imagenes {{{
$imagen =& new MECON_HTML_Image('/sistemas/yatta/images/estado_'.
$PROCESO->status.'.gif');
$cerrar = new MECON_HTML_Image('/MECON/images/general_cerrar.gif');
-$detener =& new MECON_HTML_Link('proceso_detener',
+$detener =& new MECON_HTML_Link('procesos_detener',
new MECON_HTML_Image ('/MECON/images/general_detener.gif'),
array ('id' => $id));
//}}}
//DIBUJO LA PAGINA {{{
-$PAGE->addBodyContent(''. $imagen->toHtml().' '. $PROCESO->icono
- .'
');
+$TABLA->addRow(array ($imagen->toHtml().' '. $PROCESO->icono), 'titulo colspan=2');
+$TABLA->addRow(array('Id', $id));
+$TABLA->addRow(array('Fecha', $PROCESO->fecha));
+$TABLA->addRow(array('Sistema', $PROCESO->nombre_sistema));
+$TABLA->addRow(array('Descripcion', $PROCESO->descripcion));
+$TABLA->addRow(array('Owner', $PROCESO->owner));
+$TABLA->addRow(array('Destinos', @implode(', ', $PROCESO->destinos)));
+$TABLA->addRow(array('Nota', $PROCESO->nota));
+
+$TABLA->addLink('volver', new MECON_HTML_Link('procesos'));
-$TABLA->addRow(array(
- 'Id: '. $id .'
'.
- 'Fecha: '. $PROCESO->fecha->format("%d/%m/%Y") .'
'.
- 'Sistema: '. $PROCESO->nombre_sistema .'
'.
- 'Descripcion: '. $PROCESO->descripcion .'
'.
- 'Owner: '. $PROCESO->owner .'
'.
- 'Destinos: '. implode(', ', $PROCESO->destinos) .'
'.
- 'Nota: '. $PROCESO->nota .'
'
- ));
-$PAGE->addBodyContent($TABLA->toHtml());
-$PAGE->addBodyContent('
');
+$MARCO->addBody($TABLA);
+$MARCO->addBody('
');
if ($PROCESO->status == 0 || $PROCESO->status == 1) {
- $PAGE->addBodyContent($detener->toHtml());
+ $MARCO->addBody($detener->toHtml().' ');
}
-$PAGE->addBodyContent(''.$cerrar->toHtml().'');
-$PAGE->setTitle('Datos del Proceso');
-$PAGE->display();
+$MARCO->addStyleSheet('css/yatta.css');
+$MARCO->display();
// }}}
?>