X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/bf3397e09f20d6ee9ea3bfeec51e56f24118aae9..ef1da2e8ecfb3480a55cd70cb42ab9acb36fd1cc:/sistema/local_lib/AI/Form.php?ds=sidebyside diff --git a/sistema/local_lib/AI/Form.php b/sistema/local_lib/AI/Form.php index f17e12d..f83c623 100644 --- a/sistema/local_lib/AI/Form.php +++ b/sistema/local_lib/AI/Form.php @@ -87,7 +87,13 @@ class AI_Form extends MECON_HTML_QuickForm { 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'); }