public function imprimirPlanillas($tipo)
 {
     if ($this->verificarSession()) {
         $cfg = Configuracion::getConfiguracion('colegio');
         $colegio = $cfg['NOMBRE'];
         $reporte = new Reportes();
         if ($colegio == "galois") {
         } elseif ($colegio == "santaTeresita") {
             if ($tipo == "AUXILIAR") {
                 $reporte->planillaAuxiliarSantateresita();
             } else {
                 if ($tipo == "CALIFICACION") {
                     $reporte->planillaCalificacionSantateresita();
                 }
             }
         }
     }
 }