Skip to content

Commit

Permalink
Mostrar el centro gestor en el listado de propuestas
Browse files Browse the repository at this point in the history
  • Loading branch information
quique committed May 23, 2018
1 parent 5cd378c commit 77d26b1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions views/propuesta/listado.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@
);
}
], [
'attribute' => 'orientacion.nombre',
'label' => Yii::t('jonathan', 'Orientación'),
], [
'attribute' => 'modalidad.nombre',
'label' => Yii::t('jonathan', 'Modalidad'),
'label' => Yii::t('jonathan', 'Centro gestor'),
'value' => function ($propuesta) {
// Se considera centro gestor al primero de la lista.
$centro_gestor = $propuesta->getPropuestaCentros()->orderBy(['id' => SORT_ASC])->limit(1)->one();
return $centro_gestor ? $centro_gestor->nombre_centro : null;
},
], [
'attribute' => 'estado.nombre',
'label' => Yii::t('jonathan', 'Estado'),
Expand Down

0 comments on commit 77d26b1

Please sign in to comment.