|
- <?php
-
-
-
- use domain\Document\DeliveryNote\DeliveryNote;
- use domain\Order\Order\Order;
- use domain\PointSale\PointSale\PointSale;
- use yii\grid\GridView;
- use yii\helpers\ArrayHelper;
- use yii\helpers\Html;
-
- $deliveryNoteModule = $this->getDeliveryNoteModule();
-
- $this->setTitle('Bons de livraison');
- $this->addBreadcrumb($this->getTitle());
- $this->addButton(['label' => 'Nouveau bon de livraison <span class="glyphicon glyphicon-plus"></span>', 'url' => ['distribution/index', 'message_generate_bl' => 1], 'class' => 'btn btn-primary']);
-
- ?>
-
- <div class="delivery-note-index">
- <?php if (DeliveryNote::searchCount()): ?>
- <?= GridView::widget([
- 'filterModel' => $searchModel,
- 'dataProvider' => $dataProvider,
- 'columns' => [
- [
- 'attribute' => 'status',
- 'label' => 'Statut',
- 'filter' => [
- 'draft' => 'Brouillon',
- 'valid' => 'Valide',
- ],
- 'format' => 'raw',
- 'value' => function ($model) use ($deliveryNoteModule) {
- return $deliveryNoteModule->getHtmlLabel($model);
- }
- ],
- [
- 'attribute' => 'reference',
- 'headerOptions' => ['class' => 'column-hide-on-mobile'],
- 'filterOptions' => ['class' => 'column-hide-on-mobile'],
- 'contentOptions' => ['class' => 'column-hide-on-mobile'],
- 'value' => function ($model) {
- return (strlen($model->reference) > 0) ? $model->reference : '';
- }
- ],
- 'name',
- [
- 'attribute' => 'date_distribution',
- 'header' => 'Jour de distribution',
- 'filter' => \yii\jui\DatePicker::widget([
- 'language' => 'fr',
- 'dateFormat' => 'dd/MM/yyyy',
- 'model' => $searchModel,
- 'attribute' => 'date_distribution',
- 'options' => ['class' => 'form-control']
- ]),
- 'headerOptions' => ['class' => 'column-hide-on-mobile'],
- 'filterOptions' => ['class' => 'column-hide-on-mobile'],
- 'contentOptions' => ['class' => 'column-hide-on-mobile'],
- 'value' => function ($model) use ($deliveryNoteModule) {
- $distribution = $deliveryNoteModule->getDistribution($model);
- return $distribution ? date('d/m/Y', strtotime($distribution->date)) : '';
- }
- ],
- [
- 'attribute' => 'id_point_sale',
- 'header' => 'Point de vente',
- 'filter' => ArrayHelper::map(PointSale::searchAll([], ['as_array' => true]), 'id', 'name'),
- 'format' => 'html',
- 'headerOptions' => ['class' => 'column-hide-on-mobile'],
- 'filterOptions' => ['class' => 'column-hide-on-mobile'],
- 'contentOptions' => ['class' => 'column-hide-on-mobile'],
- 'value' => function ($model) use ($deliveryNoteModule) {
- $pointSale = $deliveryNoteModule->getPointSale($model);
- return $pointSale ? Html::encode($pointSale->name) : '';
- }
- ],
- [
- 'attribute' => 'amount',
- 'header' => 'Montant',
- 'value' => function ($deliveryNote) use ($deliveryNoteModule) {
- return $deliveryNoteModule->getAmountWithTax($deliveryNote, Order::INVOICE_AMOUNT_TOTAL, true);
- }
- ],
- [
- 'attribute' => 'is_sent',
- 'header' => 'Envoyé',
- 'format' => 'raw',
- 'headerOptions' => ['class' => 'column-hide-on-mobile'],
- 'filterOptions' => ['class' => 'column-hide-on-mobile'],
- 'contentOptions' => ['class' => 'column-hide-on-mobile'],
- 'value' => function ($model) {
- if ($model->is_sent) {
- return '<span class="label label-success">Oui</span>';
- } else {
- return '<span class="label label-default">Non</span>';
- }
- }
- ],
- [
- 'class' => 'yii\grid\ActionColumn',
- 'template' => '{validate} {update} {delete} {send} {download}',
- 'headerOptions' => ['class' => 'column-actions'],
- 'contentOptions' => ['class' => 'column-actions'],
- 'buttons' => [
- 'send' => function ($url, $deliveryNote) use ($deliveryNoteModule) {
- return ((isset($deliveryNote->user) && strlen($deliveryNote->user->email) > 0) ? Html::a('<span class="glyphicon glyphicon-send"></span>', $url, [
- 'title' => 'Envoyer', 'class' => 'btn btn-default'
- ]) : '');
- },
- 'download' => function ($url, $deliveryNote) {
- return Html::a('<span class="glyphicon glyphicon-download-alt"></span>', $url, [
- 'title' => 'Télécharger', 'class' => 'btn btn-default'
- ]);
- },
- 'validate' => function ($url, $deliveryNote) use ($deliveryNoteModule) {
- return ($deliveryNoteModule->isStatusDraft($deliveryNote) ? Html::a('<span class="glyphicon glyphicon-ok"></span>', $url, [
- 'title' => 'Valider', 'class' => 'btn btn-default'
- ]) : '');
- },
- 'update' => function ($url, $deliveryNote) {
- return Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, [
- 'title' => 'Modifier', 'class' => 'btn btn-default'
- ]);
- },
- 'delete' => function ($url, $deliveryNote) use ($deliveryNoteModule) {
- return ($deliveryNoteModule->isStatusDraft($deliveryNote) ? Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [
- 'title' => 'Supprimer', 'class' => 'btn btn-default'
- ]) : '');
- }
- ],
- ],
- ],
- ]); ?>
- <?php else: ?>
- <div class="alert alert-info">Aucun bon de livraison enregistré</div>
- <?php endif; ?>
- </div>
|