X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/1fce1689d24ee6eed11644946bfa777a06d2ef8e..14e2988c3bc7f1aaff41cd3b502e03ffa8daff89:/sistema/www/sistemas/sistemas-datos.php diff --git a/sistema/www/sistemas/sistemas-datos.php b/sistema/www/sistemas/sistemas-datos.php index 578538d..689b4a5 100644 --- a/sistema/www/sistemas/sistemas-datos.php +++ b/sistema/www/sistemas/sistemas-datos.php @@ -43,6 +43,7 @@ 'language' => 'es', 'cache' => 'false', 'simple' => 'true')); + $PAGE->addStyleSheet('/MECON/css/general_estilos.css'); $FORM = new MECON_HTML_QuickForm ('sistemas_datos','post','sistemas-datos'); $SISTEMA = new SAMURAI_Sistema ($DB, $_GET['id_sistema']); } @@ -53,9 +54,9 @@ $fecha_inicio = $SISTEMA->getFechaInicio(); $fecha_fin = $SISTEMA->getFechaFin(); $fecha_implementacion = $SISTEMA->getFechaImplementacion(); - $fecha_inicio = $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--'; - $fecha_fin = $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--'; - $fecha_implementacion = $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--'; + $fecha_inicio = $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--'; + $fecha_fin = $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--'; + $fecha_implementacion = $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--'; $FORM->addElement ('static', 'id_sistema' , 'Id Sistema' , $SISTEMA->getId() ); $FORM->addElement ('static', 'nombre' , 'Nombre' , $SISTEMA->getNombre() ); @@ -71,6 +72,7 @@ $PAGE->addBodyContent($FORM); $imagen = new HTML_Image('/MECON/images/general_cerrar.gif'); $PAGE->addBodyContent(''.$imagen->toHtml().''); + $PAGE->setTitle('Datos del Sistema'); $PAGE->display(); // }}} //FIN