$s_accion = 'Agregar';
}
// Construyo con el padre y seteos generales.
- $this->setRendererOpts(array('width' => '400'));
+ $this->renderer->updateAttributes(array('width' => '400'));
$this->addElement('header','cabecera', $s_accion . ' ' . $s_tipo);
// Elementos.
if ($tipo == 'sistema') {
require_once 'SAMURAI/Sistema.php';
$sistemas = array('' => '--');
- $sistemas += AI_Sistema::getSistemasArray($db, false);
+ if ($accion & AI_ALTA) {
+ // Si es un alta, tomo una lista de sistemas aún no agregados.
+ $sistemas += AI_Sistema::getSistemasArray($db);
+ } else {
+ // Si no, tomo una lista completa de sistemas.
+ $sistemas += SAMURAI_Sistema::getArraySistemas($db);
+ }
$fId =& $this->addElement('select', $tipo, 'Sistema', $sistemas);
$this->addRule($tipo, 'Debe ingresar un sistema.', 'required');
}