|
|
@@ -50,119 +50,130 @@ $this->addButton(['label' => 'Nouvel utilisateur <span class="glyphicon glyphico |
|
|
|
<?= |
|
|
|
|
|
|
|
$this->render('_menu', [ |
|
|
|
'idPointSaleActive' => $idPointSaleActive, |
|
|
|
'sectionInactiveUsers' => $sectionInactiveUsers, |
|
|
|
'sectionSubscribers' => $sectionSubscribers, |
|
|
|
'pointsSaleArray' => $pointsSaleArray, |
|
|
|
'section' => 'index' |
|
|
|
'idPointSaleActive' => $idPointSaleActive, |
|
|
|
'sectionInactiveUsers' => $sectionInactiveUsers, |
|
|
|
'sectionSubscribers' => $sectionSubscribers, |
|
|
|
'pointsSaleArray' => $pointsSaleArray, |
|
|
|
'section' => 'index' |
|
|
|
]); |
|
|
|
|
|
|
|
?> |
|
|
|
|
|
|
|
<?= GridView::widget([ |
|
|
|
'dataProvider' => $dataProvider, |
|
|
|
'filterModel' => $searchModel, |
|
|
|
'columns' => [ |
|
|
|
[ |
|
|
|
'attribute' => 'username', |
|
|
|
'label' => 'Nom', |
|
|
|
'value' => function ($model) { |
|
|
|
if (isset($model['name_legal_person']) && strlen($model['name_legal_person'])) { |
|
|
|
return $model['name_legal_person']; |
|
|
|
} else { |
|
|
|
return $model['lastname'] . ' ' . $model['name']; |
|
|
|
} |
|
|
|
} |
|
|
|
], |
|
|
|
[ |
|
|
|
'attribute' => 'contacts', |
|
|
|
'header' => 'Contacts', |
|
|
|
'format' => 'raw', |
|
|
|
'value' => function ($model) { |
|
|
|
$html = ''; |
|
|
|
if (strlen($model['phone'])) { |
|
|
|
$html .= $model['phone']; |
|
|
|
} |
|
|
|
if (strlen($model['phone']) && strlen($model['email'])) { |
|
|
|
$html .= '<br />'; |
|
|
|
} |
|
|
|
if (strlen($model['email'])) { |
|
|
|
$html .= $model['email']; |
|
|
|
} |
|
|
|
return $html; |
|
|
|
} |
|
|
|
], |
|
|
|
[ |
|
|
|
'class' => 'yii\grid\ActionColumn', |
|
|
|
'header' => 'Commandes', |
|
|
|
'template' => '{orders}', |
|
|
|
'headerOptions' => ['class' => 'actions'], |
|
|
|
'buttons' => [ |
|
|
|
'orders' => function ($url, $model) { |
|
|
|
$url = Yii::$app->urlManager->createUrl(['user/orders', 'id' => $model['id']]); |
|
|
|
$countOrders = Order::searchCount([ |
|
|
|
'id_user' => $model['id'] |
|
|
|
], ['conditions' => 'date_delete IS NULL']); |
|
|
|
'dataProvider' => $dataProvider, |
|
|
|
'filterModel' => $searchModel, |
|
|
|
'columns' => [ |
|
|
|
[ |
|
|
|
'attribute' => 'username', |
|
|
|
'label' => 'Nom', |
|
|
|
'value' => function ($model) { |
|
|
|
if (isset($model['name_legal_person']) && strlen($model['name_legal_person'])) { |
|
|
|
return $model['name_legal_person']; |
|
|
|
} else { |
|
|
|
return $model['lastname'] . ' ' . $model['name']; |
|
|
|
} |
|
|
|
} |
|
|
|
], |
|
|
|
[ |
|
|
|
'attribute' => 'type', |
|
|
|
'label' => 'Type', |
|
|
|
'value' => function ($model) { |
|
|
|
$typeArray = User::getTypeChoicesArray(); |
|
|
|
if(isset($typeArray[$model['type']])) { |
|
|
|
return $typeArray[$model['type']]; |
|
|
|
} |
|
|
|
return ''; |
|
|
|
} |
|
|
|
], |
|
|
|
[ |
|
|
|
'attribute' => 'contacts', |
|
|
|
'header' => 'Contacts', |
|
|
|
'format' => 'raw', |
|
|
|
'value' => function ($model) { |
|
|
|
$html = ''; |
|
|
|
if (strlen($model['phone'])) { |
|
|
|
$html .= $model['phone']; |
|
|
|
} |
|
|
|
if (strlen($model['phone']) && strlen($model['email'])) { |
|
|
|
$html .= '<br />'; |
|
|
|
} |
|
|
|
if (strlen($model['email'])) { |
|
|
|
$html .= $model['email']; |
|
|
|
} |
|
|
|
return $html; |
|
|
|
} |
|
|
|
], |
|
|
|
[ |
|
|
|
'class' => 'yii\grid\ActionColumn', |
|
|
|
'header' => 'Commandes', |
|
|
|
'template' => '{orders}', |
|
|
|
'headerOptions' => ['class' => 'actions'], |
|
|
|
'buttons' => [ |
|
|
|
'orders' => function ($url, $model) { |
|
|
|
$url = Yii::$app->urlManager->createUrl(['user/orders', 'id' => $model['id']]); |
|
|
|
$countOrders = Order::searchCount([ |
|
|
|
'id_user' => $model['id'] |
|
|
|
], ['conditions' => 'date_delete IS NULL']); |
|
|
|
|
|
|
|
$html = ''; |
|
|
|
if ($countOrders) { |
|
|
|
$html .= Html::a('<span class="glyphicon glyphicon-eye-open"></span> ' . $countOrders, $url, [ |
|
|
|
'title' => Yii::t('app', 'Commandes'), 'class' => 'btn btn-default ' |
|
|
|
]);; |
|
|
|
} else { |
|
|
|
$html .= 'Aucune commande'; |
|
|
|
} |
|
|
|
$html = ''; |
|
|
|
if ($countOrders) { |
|
|
|
$html .= Html::a('<span class="glyphicon glyphicon-eye-open"></span> ' . $countOrders, $url, [ |
|
|
|
'title' => Yii::t('app', 'Commandes'), 'class' => 'btn btn-default ' |
|
|
|
]);; |
|
|
|
} else { |
|
|
|
$html .= 'Aucune commande'; |
|
|
|
} |
|
|
|
|
|
|
|
return $html; |
|
|
|
}, |
|
|
|
], |
|
|
|
], |
|
|
|
[ |
|
|
|
'attribute' => 'credit', |
|
|
|
'format' => 'raw', |
|
|
|
'value' => function ($model) use ($producer) { |
|
|
|
return $html; |
|
|
|
}, |
|
|
|
], |
|
|
|
], |
|
|
|
[ |
|
|
|
'attribute' => 'credit', |
|
|
|
'format' => 'raw', |
|
|
|
'value' => function ($model) use ($producer) { |
|
|
|
|
|
|
|
$userProducer = UserProducer::searchOne([ |
|
|
|
'id_user' => $model->id |
|
|
|
]); |
|
|
|
$credit = $userProducer ? $userProducer->credit : 0; |
|
|
|
$classBtnCredit = $userProducer->credit_active ? 'btn-success' : 'btn-default'; |
|
|
|
$userProducer = UserProducer::searchOne([ |
|
|
|
'id_user' => $model->id |
|
|
|
]); |
|
|
|
$credit = $userProducer ? $userProducer->credit : 0; |
|
|
|
$classBtnCredit = $userProducer->credit_active ? 'btn-success' : 'btn-default'; |
|
|
|
|
|
|
|
$html = '<div class="input-group"> |
|
|
|
$html = '<div class="input-group"> |
|
|
|
<input type="text" class="form-control input-credit" readonly="readonly" value="' . number_format($credit, 2) . ' €" placeholder=""> |
|
|
|
<span class="input-group-btn"> |
|
|
|
' . Html::a( |
|
|
|
'<span class="glyphicon glyphicon-euro"></span>', |
|
|
|
Yii::$app->urlManager->createUrl(['user/credit', 'id' => $model->id]), |
|
|
|
[ |
|
|
|
'title' => 'Crédit', |
|
|
|
'class' => 'btn ' . $classBtnCredit |
|
|
|
] |
|
|
|
) . ' |
|
|
|
'<span class="glyphicon glyphicon-euro"></span>', |
|
|
|
Yii::$app->urlManager->createUrl(['user/credit', 'id' => $model->id]), |
|
|
|
[ |
|
|
|
'title' => 'Crédit', |
|
|
|
'class' => 'btn ' . $classBtnCredit |
|
|
|
] |
|
|
|
) . ' |
|
|
|
</span> |
|
|
|
</div>'; |
|
|
|
return $html; |
|
|
|
} |
|
|
|
], |
|
|
|
[ |
|
|
|
'class' => 'yii\grid\ActionColumn', |
|
|
|
'template' => '{update} {delete}', |
|
|
|
'headerOptions' => ['class' => 'column-actions'], |
|
|
|
'contentOptions' => ['class' => 'column-actions'], |
|
|
|
'buttons' => [ |
|
|
|
'update' => function ($url, $model) { |
|
|
|
$url = Yii::$app->urlManager->createUrl(['user/update', 'id' => $model->id]); |
|
|
|
$user = User::find()->with('userProducer')->where(['id' => $model->id])->one(); |
|
|
|
return Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, [ |
|
|
|
'title' => Yii::t('app', 'Modifier'), 'class' => 'btn btn-default' |
|
|
|
]); |
|
|
|
}, |
|
|
|
'delete' => function ($url, $model) { |
|
|
|
return Html::a('<span class="glyphicon glyphicon-trash"></span>', Yii::$app->urlManager->createUrl(array_merge(['user/delete', 'id' => $model->id], Yii::$app->getRequest()->getQueryParams())), [ |
|
|
|
'title' => Yii::t('app', 'Supprimer'), 'class' => 'btn btn-default btn-confirm-delete' |
|
|
|
]); |
|
|
|
} |
|
|
|
], |
|
|
|
], |
|
|
|
return $html; |
|
|
|
} |
|
|
|
], |
|
|
|
[ |
|
|
|
'class' => 'yii\grid\ActionColumn', |
|
|
|
'template' => '{update} {delete}', |
|
|
|
'headerOptions' => ['class' => 'column-actions'], |
|
|
|
'contentOptions' => ['class' => 'column-actions'], |
|
|
|
'buttons' => [ |
|
|
|
'update' => function ($url, $model) { |
|
|
|
$url = Yii::$app->urlManager->createUrl(['user/update', 'id' => $model->id]); |
|
|
|
$user = User::find()->with('userProducer')->where(['id' => $model->id])->one(); |
|
|
|
return Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, [ |
|
|
|
'title' => Yii::t('app', 'Modifier'), 'class' => 'btn btn-default' |
|
|
|
]); |
|
|
|
}, |
|
|
|
'delete' => function ($url, $model) { |
|
|
|
return Html::a('<span class="glyphicon glyphicon-trash"></span>', Yii::$app->urlManager->createUrl(array_merge(['user/delete', 'id' => $model->id], Yii::$app->getRequest()->getQueryParams())), [ |
|
|
|
'title' => Yii::t('app', 'Supprimer'), 'class' => 'btn btn-default btn-confirm-delete' |
|
|
|
]); |
|
|
|
} |
|
|
|
], |
|
|
|
], |
|
|
|
], |
|
|
|
]); ?> |