Commit fe4aebf5c7554812b05cd07d7f0a6bc1b30f065d
1 parent
e1cab739ee
Exists in
master
se añadio el nombre de la seccion cuando busca unidad curricular en la inscripcion
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
src/AppBundle/Entity/OfertaAcademica.php
... | ... | @@ -309,6 +309,8 @@ class OfertaAcademica |
309 | 309 | } |
310 | 310 | |
311 | 311 | public function __toString() { |
312 | - return $this->getIdMallaCurricularUc()->getIdUnidadCurricularVolumen()->getIdUnidadCurricular()->getNombre(); | |
312 | + return | |
313 | + $this->getIdMallaCurricularUc()->getIdUnidadCurricularVolumen()->getIdUnidadCurricular()->getNombre() | |
314 | + . " Seccion: " . $this->getIdSeccion()->getNombre(); | |
313 | 315 | } |
314 | 316 | } | ... | ... |