Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

30 lines
883B

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model app\models\Produit */
  5. $this->title = 'Passer une commande';
  6. //$this->params['breadcrumbs'][] = ['label' => 'Produits', 'url' => ['index']];
  7. //$this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="commande-create">
  10. <h1 class="title-systeme-commande"><img class="icon" src="<?php echo Yii::$app->urlManager->getBaseUrl(); ?>/img/order.png" alt="" /> <?= Html::encode($this->title) ?></h1>
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. 'points_vente' => $points_vente,
  14. 'jours_production' => $jours_production,
  15. 'produits' => $produits,
  16. 'produits_selec' => $produits_selec,
  17. 'produits_dispos' => $produits_dispos,
  18. 'production' => $production,
  19. 'commandes_en_cours' => $commandes_en_cours,
  20. 'produits_vrac' => $produits_vrac
  21. ]) ?>
  22. </div>