public function verListaDeCiePorGrupoEtareo($iIdGrupoEtareo)
 {
     require_once "tablaAngelSayes.php";
     $oLMantenimientoGeneral = new LMantenimientoGeneral();
     $tabla = new TablaAngelSayes();
     $array = $oLMantenimientoGeneral->verListaDeCiePorGrupoEtareo($iIdGrupoEtareo);
     //print_r($array);
     $arrayWidth = array(0 => "100", 1 => "100", 2 => "100", 3 => "800", 4 => "90");
     $arrayTitulos = array(0 => "Id Cie", 1 => "IdDetalle", 2 => "Codigo Cie", 3 => "Descripcion", 4 => "Estado");
     $arrayAlign = array(0 => "center", 1 => "center", 2 => "center", 3 => "left", 4 => "center");
     $arrayCursor = array(0 => "default", 1 => "default", 2 => "default", 3 => "default", 4 => "pointer");
     $arrayType = array(0 => "text", 1 => "text", 2 => "text", 3 => "text", 4 => "bit");
     $arrayFunctionXCelda = array(0 => "", 1 => "", 2 => "", 3 => "", 4 => "");
     $arrayImagenPorCelda = array(0 => "0", 1 => "0", 2 => "0", 3 => "0", 4 => "0");
     $arrayUrlImagen = array(0 => "", 1 => "", 2 => "", 3 => "", 4 => "");
     $arrayFunction = array(0 => "", 1 => "", 2 => "", 3 => "", 4 => "cambiarEstadoCieGrupoEtareo");
     $arrayTitle = array(0 => "", 1 => "", 2 => "", 3 => "", 4 => "Cambiar Estado");
     $numDatosEnviadosFuncionCadena = 1;
     $scroll = 0;
     $height = 250;
     $resultado = $tabla->contructorTabla($scroll, $numDatosEnviadosFuncionCadena, $arrayFunctionXCelda, $arrayTitle, $arrayFunction, $arrayImagenPorCelda, $arrayUrlImagen, $array, $arrayWidth, $arrayTitulos, $arrayAlign, $arrayType, $arrayCursor, $height);
 }
Example #2
0
 function seleccionActividades()
 {
     $oLMantenimientoGeneral = new LMantenimientoGeneral();
     $datosComboActividades = $oLMantenimientoGeneral->getArrayListaActividades();
     $o_ComboActividades = new Combo($datosComboActividades);
     $comboHTML_01 = $o_ComboActividades->getOptionsHTML();
     $row_ochg = "onchange=\"seleccionaActividadProgramacionMedicos()\"";
     $row_ini = "<table width=\"100%\" align=\"left\"><tr>";
     $row_fin = "</tr></table>";
     $row_etiqueta = "";
     $row_filtro = "<td align=\"left\" width=\"100%\" style=\"font-family:Arial;font-size:11pt\"><select align=\"center\" style=\"font-family:Arial;font-size: 11pt\" name=\"cb_filtro_actividad\" id=\"cb_filtro_actividad\" " . $row_ochg . ">";
     $row_fin_cb = "</select></td>";
     $comboHTML = $row_ini . $row_filtro . $comboHTML_01 . $row_fin_cb . $row_fin;
     return $comboHTML;
 }