$columns = [
['class' => 'yii\grid\SerialColumn'],
'name',
- 'articule',
+ [ 'format' => 'raw',
+ 'attribute' => 'articule',
+ 'label' => 'Актикул',
+ 'value' => function ($model) {
+
+ $matrixProductId = \yii_app\records\MatrixErp::find()
+ ->select('id')
+ ->where(['guid' => $model['id']])->scalar();
+ /*$link = '<a href="' . Yii::$app->urlManager->createUrl(['/matrix-erp/update', 'id' => $matrixProductId]) . '">'
+ . $model['articule'] . '</a>';*/
+ $link = Html::a($model['articule'], ['/matrix-erp/update', 'id' => $matrixProductId], ['target' => '_blank', 'encode' => false]);
+ return $link;
+ }
+ ],
'id',
[
'attribute' => 'is_valid',