From 77d26b1e603d899c21fdfa3560c0bdedb018a9e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Mat=C3=ADas=20S=C3=A1nchez=20=28Quique=29?= Date: Wed, 23 May 2018 14:30:25 +0200 Subject: [PATCH] Mostrar el centro gestor en el listado de propuestas --- views/propuesta/listado.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/views/propuesta/listado.php b/views/propuesta/listado.php index 178cebe..5aa650d 100644 --- a/views/propuesta/listado.php +++ b/views/propuesta/listado.php @@ -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'),