Esempio n. 1
0
 public function executeListHorarios(sfWebRequest $request)
 {
     $this->grade = $this->getRoute()->getObject();
     $c = new Criteria();
     //$c->addJoin(ParasitoseContentGroupPeer::CONTENT_GROUP_ID, ContentGroupPeer::ID);
     $c->add(PeriodoPeer::GRADE_ID, $this->grade->getId(), Criteria::EQUAL);
     //$c->addDescendingOrderByColumn(ContentVersionPeer::UPDATED_AT);
     $this->periodos = PeriodoPeer::doSelect($c);
 }
Esempio n. 2
0
 public function getPeriodosArray()
 {
     $optionsPeriodo = array();
     $criteria = new Criteria();
     $criteria->add(PeriodoPeer::FK_CICLOLECTIVO_ID, $this->getId());
     $aPeriodo = PeriodoPeer::doSelect($criteria);
     foreach ($aPeriodo as $periodo) {
         $optionsPeriodo[$periodo->getId()] = $periodo->getDescripcion();
     }
     return $optionsPeriodo;
 }
Esempio n. 3
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = PeriodoPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setDescription($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setGradeId($arr[$keys[2]]);
     }
 }
Esempio n. 4
0
 public static function doSelectJoinAllExceptActividad(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ExamenPeer::addSelectColumns($c);
     $startcol2 = ExamenPeer::NUM_COLUMNS - ExamenPeer::NUM_LAZY_LOAD_COLUMNS;
     EscalanotaPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (EscalanotaPeer::NUM_COLUMNS - EscalanotaPeer::NUM_LAZY_LOAD_COLUMNS);
     AlumnoPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (AlumnoPeer::NUM_COLUMNS - AlumnoPeer::NUM_LAZY_LOAD_COLUMNS);
     PeriodoPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + (PeriodoPeer::NUM_COLUMNS - PeriodoPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(ExamenPeer::FK_ESCALANOTA_ID), array(EscalanotaPeer::ID), $join_behavior);
     $c->addJoin(array(ExamenPeer::FK_ALUMNO_ID), array(AlumnoPeer::ID), $join_behavior);
     $c->addJoin(array(ExamenPeer::FK_PERIODO_ID), array(PeriodoPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ExamenPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ExamenPeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = ExamenPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ExamenPeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = EscalanotaPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = EscalanotaPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = EscalanotaPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 EscalanotaPeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addExamen($obj1);
         }
         $key3 = AlumnoPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = AlumnoPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = AlumnoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 AlumnoPeer::addInstanceToPool($obj3, $key3);
             }
             $obj3->addExamen($obj1);
         }
         $key4 = PeriodoPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = PeriodoPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $omClass = PeriodoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 PeriodoPeer::addInstanceToPool($obj4, $key4);
             }
             $obj4->addExamen($obj1);
         }
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Esempio n. 5
0
 public function countPeriodos(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(CiclolectivoPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collPeriodos === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(PeriodoPeer::FK_CICLOLECTIVO_ID, $this->id);
             $count = PeriodoPeer::doCount($criteria, $con);
         }
     } else {
         if (!$this->isNew()) {
             $criteria->add(PeriodoPeer::FK_CICLOLECTIVO_ID, $this->id);
             if (!isset($this->lastPeriodoCriteria) || !$this->lastPeriodoCriteria->equals($criteria)) {
                 $count = PeriodoPeer::doCount($criteria, $con);
             } else {
                 $count = count($this->collPeriodos);
             }
         } else {
             $count = count($this->collPeriodos);
         }
     }
     return $count;
 }
Esempio n. 6
0
 public function executeGrabarTurnosYPeriodos()
 {
     $ciclolectivo = $this->getRequestParameter('ciclolectivo');
     if (is_numeric($ciclolectivo['id'])) {
         $this->ciclolectivo = CiclolectivoPeer::retrieveByPk($ciclolectivo['id']);
         if (isset($ciclolectivo['descripcion'])) {
             $this->ciclolectivo->setDescripcion($ciclolectivo['descripcion']);
         }
         if (isset($ciclolectivo['fecha_fin'])) {
             if ($ciclolectivo['fecha_fin']) {
                 list($d, $m, $y) = sfContext::getInstance()->getI18N()->getDateForCulture($ciclolectivo['fecha_fin'], $this->getUser()->getCulture());
                 $this->ciclolectivo->setFechaFin("{$y}-{$m}-{$d}");
             }
         }
         if (isset($ciclolectivo['fecha_inicio'])) {
             if ($ciclolectivo['fecha_inicio']) {
                 list($d, $m, $y) = sfContext::getInstance()->getI18N()->getDateForCulture($ciclolectivo['fecha_inicio'], $this->getUser()->getCulture());
                 $this->ciclolectivo->setFechaInicio("{$y}-{$m}-{$d}");
             }
         }
         $this->ciclolectivo->save();
     }
     $aTurnos = $this->getRequestParameter('turnos');
     if (is_array($aTurnos)) {
         foreach ($aTurnos as $turnos) {
             $horaInicio = $this->_add_zeros($turnos['hora_inicio']['hour'], 2) . ":" . $this->_add_zeros($turnos['hora_inicio']['minute'], 2) . " " . $turnos['hora_inicio']['ampm'];
             $horaFin = $this->_add_zeros($turnos['hora_fin']['hour'], 2) . ":" . $this->_add_zeros($turnos['hora_fin']['minute'], 2) . " " . $turnos['hora_fin']['ampm'];
             if ($turnos['descripcion'] and $horaInicio != $horaFin) {
                 if (isset($turnos['id']) and is_numeric($turnos['id'])) {
                     $this->turnos = TurnoPeer::retrieveByPk($turnos['id']);
                 } else {
                     $this->turnos = new Turno();
                 }
                 if (isset($turnos['descripcion'])) {
                     $this->turnos->setDescripcion($turnos['descripcion']);
                 }
                 $this->turnos->setHoraInicio($horaInicio);
                 $this->turnos->setHoraFin($horaFin);
                 $this->turnos->setFkCiclolectivoId($ciclolectivo['id']);
                 $this->turnos->save();
             }
         }
     }
     $aPeriodo = $this->getRequestParameter('periodo');
     if (is_array($aPeriodo)) {
         foreach ($aPeriodo as $periodo) {
             if ($periodo['descripcion'] and ($periodo['fecha_inicio'] or $periodo['fecha_fin'])) {
                 if (isset($periodo['id']) and is_numeric($periodo['id'])) {
                     $this->periodo = PeriodoPeer::retrieveByPk($periodo['id']);
                 } else {
                     $this->periodo = new Periodo();
                 }
                 if (isset($periodo['descripcion'])) {
                     $this->periodo->setDescripcion($periodo['descripcion']);
                 }
                 if (isset($periodo['calcular'])) {
                     $this->periodo->setCalcular($periodo['calcular']);
                 } else {
                     $this->periodo->setCalcular(false);
                 }
                 if (isset($periodo['formula'])) {
                     $this->periodo->setFormula($periodo['formula']);
                 }
                 if (isset($periodo['fecha_inicio'])) {
                     if ($periodo['fecha_inicio']) {
                         list($d, $m, $y) = sfContext::getInstance()->getI18N()->getDateForCulture($periodo['fecha_inicio'], $this->getUser()->getCulture());
                         $this->periodo->setFechaInicio("{$y}-{$m}-{$d}");
                     }
                 }
                 if (isset($periodo['fecha_fin'])) {
                     if ($periodo['fecha_fin']) {
                         list($d, $m, $y) = sfContext::getInstance()->getI18N()->getDateForCulture($periodo['fecha_fin'], $this->getUser()->getCulture());
                         $this->periodo->setFechaFin("{$y}-{$m}-{$d}");
                     }
                 }
                 $this->periodo->setFkCiclolectivoId($ciclolectivo['id']);
                 $this->periodo->save();
             }
         }
     }
     return $this->redirect('ciclolectivo/agregarTurnosYPeriodos?id=' . $ciclolectivo['id']);
 }
Esempio n. 7
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = PeriodoPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setFkCiclolectivoId($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setFechaInicio($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setFechaFin($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setDescripcion($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setCalcular($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setFormula($arr[$keys[6]]);
     }
 }
Esempio n. 8
0
 public function getPeriodo(PropelPDO $con = null)
 {
     if ($this->aPeriodo === null && $this->fk_periodo_id !== null) {
         $c = new Criteria(PeriodoPeer::DATABASE_NAME);
         $c->add(PeriodoPeer::ID, $this->fk_periodo_id);
         $this->aPeriodo = PeriodoPeer::doSelectOne($c, $con);
     }
     return $this->aPeriodo;
 }
Esempio n. 9
0
 /**
  * Get the associated Periodo object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Periodo The associated Periodo object.
  * @throws     PropelException
  */
 public function getPeriodo(PropelPDO $con = null)
 {
     if ($this->aPeriodo === null && $this->periodo_id !== null) {
         $this->aPeriodo = PeriodoPeer::retrieveByPk($this->periodo_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aPeriodo->addGradeunits($this);
         		 */
     }
     return $this->aPeriodo;
 }
Esempio n. 10
0
 public function getAsistenciasPorCiclolectivo($ciclo_lectivo)
 {
     $aAsistencia = array();
     $criteria = new Criteria();
     $criteria->add(PeriodoPeer::FK_CICLOLECTIVO_ID, $ciclo_lectivo);
     $aPeriodo = PeriodoPeer::doSelect($criteria);
     foreach ($aPeriodo as $periodo) {
         $aAsistencia[$periodo->getId()] = $this->getAsistenciasPorFechas($periodo->getFechaInicio(), $periodo->getFechaFin());
     }
     return $aAsistencia;
 }
Esempio n. 11
0
 /**
  * Method to invalidate the instance pool of all tables related to Grade
  * by a foreign key with ON DELETE CASCADE
  */
 public static function clearRelatedInstancePool()
 {
     // invalidate objects in PeriodoPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     PeriodoPeer::clearInstancePool();
 }
Esempio n. 12
0
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(PeriodoPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(PeriodoPeer::DATABASE_NAME);
         $criteria->add(PeriodoPeer::ID, $pks, Criteria::IN);
         $objs = PeriodoPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Esempio n. 13
0
 /**
  * Selects a collection of Gradeunit objects pre-filled with all related objects except Week.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Gradeunit objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptWeek(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     GradeunitPeer::addSelectColumns($criteria);
     $startcol2 = GradeunitPeer::NUM_COLUMNS - GradeunitPeer::NUM_LAZY_LOAD_COLUMNS;
     HorarioPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (HorarioPeer::NUM_COLUMNS - HorarioPeer::NUM_LAZY_LOAD_COLUMNS);
     DisciplinaPeer::addSelectColumns($criteria);
     $startcol4 = $startcol3 + (DisciplinaPeer::NUM_COLUMNS - DisciplinaPeer::NUM_LAZY_LOAD_COLUMNS);
     ProfessorPeer::addSelectColumns($criteria);
     $startcol5 = $startcol4 + (ProfessorPeer::NUM_COLUMNS - ProfessorPeer::NUM_LAZY_LOAD_COLUMNS);
     PeriodoPeer::addSelectColumns($criteria);
     $startcol6 = $startcol5 + (PeriodoPeer::NUM_COLUMNS - PeriodoPeer::NUM_LAZY_LOAD_COLUMNS);
     LocalPeer::addSelectColumns($criteria);
     $startcol7 = $startcol6 + (LocalPeer::NUM_COLUMNS - LocalPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(GradeunitPeer::HORARIO_ID, HorarioPeer::ID, $join_behavior);
     $criteria->addJoin(GradeunitPeer::DISCIPLINA_ID, DisciplinaPeer::ID, $join_behavior);
     $criteria->addJoin(GradeunitPeer::PROFESSOR_ID, ProfessorPeer::ID, $join_behavior);
     $criteria->addJoin(GradeunitPeer::PERIODO_ID, PeriodoPeer::ID, $join_behavior);
     $criteria->addJoin(GradeunitPeer::LOCAL_ID, LocalPeer::ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseGradeunitPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = GradeunitPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = GradeunitPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = GradeunitPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             GradeunitPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Horario rows
         $key2 = HorarioPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = HorarioPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = HorarioPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 HorarioPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Gradeunit) to the collection in $obj2 (Horario)
             $obj2->addGradeunit($obj1);
         }
         // if joined row is not null
         // Add objects for joined Disciplina rows
         $key3 = DisciplinaPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = DisciplinaPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $cls = DisciplinaPeer::getOMClass(false);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 DisciplinaPeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (Gradeunit) to the collection in $obj3 (Disciplina)
             $obj3->addGradeunit($obj1);
         }
         // if joined row is not null
         // Add objects for joined Professor rows
         $key4 = ProfessorPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = ProfessorPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $cls = ProfessorPeer::getOMClass(false);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 ProfessorPeer::addInstanceToPool($obj4, $key4);
             }
             // if $obj4 already loaded
             // Add the $obj1 (Gradeunit) to the collection in $obj4 (Professor)
             $obj4->addGradeunit($obj1);
         }
         // if joined row is not null
         // Add objects for joined Periodo rows
         $key5 = PeriodoPeer::getPrimaryKeyHashFromRow($row, $startcol5);
         if ($key5 !== null) {
             $obj5 = PeriodoPeer::getInstanceFromPool($key5);
             if (!$obj5) {
                 $cls = PeriodoPeer::getOMClass(false);
                 $obj5 = new $cls();
                 $obj5->hydrate($row, $startcol5);
                 PeriodoPeer::addInstanceToPool($obj5, $key5);
             }
             // if $obj5 already loaded
             // Add the $obj1 (Gradeunit) to the collection in $obj5 (Periodo)
             $obj5->addGradeunit($obj1);
         }
         // if joined row is not null
         // Add objects for joined Local rows
         $key6 = LocalPeer::getPrimaryKeyHashFromRow($row, $startcol6);
         if ($key6 !== null) {
             $obj6 = LocalPeer::getInstanceFromPool($key6);
             if (!$obj6) {
                 $cls = LocalPeer::getOMClass(false);
                 $obj6 = new $cls();
                 $obj6->hydrate($row, $startcol6);
                 LocalPeer::addInstanceToPool($obj6, $key6);
             }
             // if $obj6 already loaded
             // Add the $obj1 (Gradeunit) to the collection in $obj6 (Local)
             $obj6->addGradeunit($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Esempio n. 14
0
 /**
  * Returns the number of related Periodo objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related Periodo objects.
  * @throws     PropelException
  */
 public function countPeriodos(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(GradePeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collPeriodos === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(PeriodoPeer::GRADE_ID, $this->id);
             $count = PeriodoPeer::doCount($criteria, false, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return count of the collection.
             $criteria->add(PeriodoPeer::GRADE_ID, $this->id);
             if (!isset($this->lastPeriodoCriteria) || !$this->lastPeriodoCriteria->equals($criteria)) {
                 $count = PeriodoPeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collPeriodos);
             }
         } else {
             $count = count($this->collPeriodos);
         }
     }
     return $count;
 }
Esempio n. 15
0
 public function executeListConcepto()
 {
     // inicializando variables
     $optionsConcepto = array();
     $optionsDivision = array();
     $optionsCarrera = array();
     $aAlumno = array();
     $division_id = "";
     $concepto_id = "";
     $periodo_id = "";
     $carrera_id = "";
     $aPeriodo = array();
     $aPosiblesNotas = array();
     $optionsPeriodo = array();
     $aNotaAlumno = array();
     $aNotaAlumnoObs = array();
     $sizeNota = 0;
     $establecimiento_id = $this->getUser()->getAttribute('fk_establecimiento_id');
     // tomando los datos del formulario
     $division_id = $this->getRequestParameter('division_id');
     $periodo_id = $this->getRequestParameter('periodo_id');
     $concepto_id = $this->getRequestParameter('concepto_id');
     $carrera_id = $this->getRequestParameter('carrera_id');
     // llenando el combo de division segun establecimiento
     $optionsDivision = $this->getDivisiones($establecimiento_id, $carrera_id);
     $optionsCarrera = $this->getCarreras($establecimiento_id);
     $optionsConcepto[] = "";
     $e = EstablecimientoPeer::retrieveByPk($establecimiento_id);
     $optionsConcepto = array_merge($optionsConcepto, $e->getConceptosArray());
     $aAlumno = $this->getAlumnos($division_id);
     $criteria = new Criteria();
     $criteria->add(PeriodoPeer::FK_CICLOLECTIVO_ID, $this->getUser()->getAttribute('fk_ciclolectivo_id'));
     $criteria->add(PeriodoPeer::CALCULAR, false);
     $aPeriodo = PeriodoPeer::doSelect($criteria);
     $optionsPeriodo[] = "Todos";
     foreach ($aPeriodo as $periodo) {
         $optionsPeriodo[$periodo->getId()] = $periodo->getDescripcion();
     }
     if ($periodo_id) {
         $aPeriodo = array();
         $aPeriodo[] = PeriodoPeer::retrieveByPK($periodo_id);
     }
     if (count($aAlumno) > 0) {
         // esto puede ser mejorado con solo una query bastante facilmente
         foreach ($aAlumno as $alumno) {
             foreach ($aPeriodo as $periodo) {
                 $criteria = new Criteria();
                 $criteria->add(BoletinConceptualPeer::FK_ALUMNO_ID, $alumno->getId());
                 $criteria->add(BoletinConceptualPeer::FK_PERIODO_ID, $periodo->getId());
                 $criteria->add(BoletinConceptualPeer::FK_CONCEPTO_ID, $concepto_id);
                 $aBoletinConceptual = BoletinConceptualPeer::doSelect($criteria);
                 $aNotaAlumno[$alumno->getId()][$periodo->getId()] = "";
                 $aNotaAlumnoObs[$alumno->getId()][$periodo->getId()] = "";
                 foreach ($aBoletinConceptual as $boletinConceptual) {
                     //if(method_exists($legajopedagogico->getResumen(),'getContents')) {
                     if ($boletinConceptual->getFkEscalanotaId()) {
                         $aNotaAlumno[$alumno->getId()][$periodo->getId()] = $boletinConceptual->getEscalanota()->getNombre();
                     }
                     if ($boletinConceptual->getObservacion()) {
                         if ($boletinConceptual->getObservacion() != null) {
                             $aNotaAlumnoObs[$alumno->getId()][$periodo->getId()] = $boletinConceptual->getObservacion();
                         }
                     }
                 }
             }
         }
     }
     $criteria = new Criteria();
     $criteria->add(EscalanotaPeer::FK_ESTABLECIMIENTO_ID, $establecimiento_id);
     $aPosiblesNotas = EscalanotaPeer::doSelect($criteria);
     foreach ($aPosiblesNotas as $p) {
         $actual = strlen($p->getNombre());
         if ($actual > $sizeNota) {
             $sizeNota = $actual;
         }
     }
     // llenar variables a mostrar en el template
     $this->optionsDivision = $optionsDivision;
     $this->optionsConcepto = $optionsConcepto;
     $this->aAlumno = $aAlumno;
     $this->division_id = $division_id;
     $this->concepto_id = $concepto_id;
     $this->periodo_id = $periodo_id;
     $this->carrera_id = $carrera_id;
     $this->optionsCarrera = $optionsCarrera;
     $this->aPeriodo = $aPeriodo;
     $this->aPosiblesNotas = $aPosiblesNotas;
     $this->optionsPeriodo = $optionsPeriodo;
     $this->aNotaAlumno = $aNotaAlumno;
     $this->aNotaAlumnoObs = $aNotaAlumnoObs;
     $this->sizeNota = $sizeNota;
 }