public function getListaEmpleados($cod, $estado, $tipoDoc, $nDoc, $apPat, $apMat, $nombre) { $o_DRrhh = new DRrhh(); if ($estado == '') { } if ($cod != '' && $nDoc == '' && $apPat == '') { $rs = $o_DRrhh->getListaEmpleadosXCod($cod); } if ($nDoc != "Buscar..." && $nDoc != '') { $rs = $o_DRrhh->getListaEmpleadosXDoc($tipoDoc, $nDoc); } if ($apPat != '' || $apMat != '' || $nombre != '') { $rs = $o_DRrhh->getListaEmpleadosXNombre($apPat, $apMat, $nombre, $estado); } // if($estado!='') { // $rs = $o_DRrhh->getListaEmpleadosXEstado($estado); // } $array = $this->filasEmpleados($rs); return $array; }