]> git.llucax.com Git - mecon/samurai.git/blobdiff - src/www/sistemas.php
- Completado hasta el cambio de la estructura de directorios
[mecon/samurai.git] / src / www / sistemas.php
index bea082c8bc75712e65f4abef681e269ee9c390d0..6c0e8c65eea4a297737c256cfe91ad369e5ad56f 100644 (file)
 // $Date$
 // $Rev$
 // 
-    require_once 'include/lib/samurai/Samurai.php';
     require_once 'HTML/Tabla.php';
 
-    $aHref      = '<a href="sistemas-abm?idSistema=NUEVO">';
+    $aHref      = '<a href="sistemas-abm?accion=##ACCION##&idSistema=##NUEVO##">';
     $aHrefModif = $aHref.'<img src="/www/images/modificar.gif" border="0"></a>';
     $aHrefElim  = $aHref.'<img src="/www/images/eliminar.gif"  border="0"></a>';
 
 
     $TABLA2 = new Tabla ('cellspacing=0');
     $row = array ($aHref.'<img src="/www/images/nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
-    $TABLA2->agregarFila($row);
-    $TABLA2->align(0,0,'right');
+    $TABLA2->addRow($row,'align=right');
     
     $TABLA = new Tabla ('cellpadding=2');
     $row = array ('Id','Nombre','Descripcion','Fecha&nbsp;Inicio','Fecha&nbsp;Fin','Fecha&nbsp;Impl.','Contacto','Modif.','Elim.');
-    $TABLA->agregarFilaCabecera($row);
+    $TABLA->addRow($row,'cabecera');
 
     foreach ($sistemas as $sistema) {
-        $Modif = ereg_replace('NUEVO', 'm'.$sistema->getId(), $aHrefModif);
-        $Elim  = ereg_replace('NUEVO', 'e'.$sistema->getId(), $aHrefElim);
-        $row = array ($sistema->getId(),$sistema->getNombre(),$sistema->getDescripcion(),$sistema->getFechaInicio(),$sistema->getFechaFin(),$sistema->getFechaImplementacion(),$sistema->getContacto(),$Modif,$Elim);
-        $TABLA->agregarFila($row);
+        $Modif = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefModif);
+        $Elim  = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefElim);
+        $Modif = ereg_replace('##ACCION##', 'm'              , $Modif);
+        $Elim  = ereg_replace('##ACCION##', 'e'              , $Elim);
+        
+        $fecha_inicio           = $sistema->getFechaInicio(); 
+        $fecha_fin              = $sistema->getFechaFin();
+        $fecha_implementacion   = $sistema->getFechaImplementacion();
+       
+        $row = array (  $sistema->getId(),
+                        $sistema->getNombre(),
+                        $sistema->getDescripcion(),
+                        $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--',
+                        $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--',
+                        $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--',
+                        $sistema->getContacto(),
+                        $Modif,
+                        $Elim,
+                );
+
+        $TABLA->addRow($row);
     }
-    $TABLA->setColAlign(2,'left');
     
 
     //Agrego las cosas al cuerpo de la pagina