- <?php
-
-
-
- $this->setTitle('Modifier une commande') ;
-
- ?>
- <div class="order-update">
-
- <?php if($orderNotfound): ?>
- <div class="alert alert-danger">Cette commande est introuvable</div><br />
- <a class="btn btn-default" href="<?php echo Yii::$app->urlManager->createUrl(['order/index']); ?>">Retour</a>
- <?php else: ?>
-
- <?= $this->render('_form', [
- 'model' => $model,
- 'pointsSaleArray' => $pointsSaleArray,
- 'distributionDaysArray' => $distributionDaysArray,
- 'productsArray' => $productsArray,
- 'selectedProducts' => $selectedProducts,
- 'availableProducts' => $availableProducts,
- 'distribution' => $distribution,
- 'ordersArray' => $ordersArray,
- 'producersArray' => $producersArray,
- 'idProducer' => $idProducer,
- 'producer' => $producer,
- 'credit' => $credit
- ]) ?>
-
- <?php endif; ?>
-
- </div>
|