|
- <?php
-
- use yii\helpers\Html;
-
-
- /* @var $this yii\web\View */
- /* @var $model app\models\Produit */
-
- $this->title = 'Passer une commande';
- //$this->params['breadcrumbs'][] = ['label' => 'Produits', 'url' => ['index']];
- //$this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="commande-create">
-
- <h1 class="title-systeme-commande"><img class="icon" src="<?php echo Yii::$app->urlManager->getBaseUrl(); ?>/img/order.png" alt="" /> <?= Html::encode($this->title) ?></h1>
-
- <?= $this->render('_form', [
- 'model' => $model,
- 'points_vente' => $points_vente,
- 'jours_production' => $jours_production,
- 'produits' => $produits,
- 'produits_selec' => $produits_selec,
- 'produits_dispos' => $produits_dispos,
- 'production' => $production,
- 'commandes_en_cours' => $commandes_en_cours,
- 'produits_vrac' => $produits_vrac
- ]) ?>
-
- </div>
|