Commit afabfcf1 authored by Shakarim Sapa's avatar Shakarim Sapa

- Tooltip заменен на вывод значения в поле "Дата отправки" (debug)

parent ffe3313c
...@@ -56,7 +56,7 @@ use yii\grid\GridView; ...@@ -56,7 +56,7 @@ use yii\grid\GridView;
if (!is_null($model->sended_date)) if (!is_null($model->sended_date))
return date('Y.m.d H:i:s', strtotime($model->sended_date)); return date('Y.m.d H:i:s', strtotime($model->sended_date));
else { else {
return 'Планируемая дата отправки: '.(!is_null($model->user->delivery_date)) ? date('d.m.Y', strtotime($model->user->delivery_date)) : 'Не указана'; return 'Планируемая дата отправки: '.((!is_null($model->user->delivery_date)) ? date('d.m.Y', strtotime($model->user->delivery_date)) : 'Не указана');
} }
} }
], ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment