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
797B

  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. ?>
  7. <div class="commande-create">
  8. <h1 class="title-systeme-commande"><span class="glyphicon glyphicon-plus"></span> <?= Html::encode($this->title) ?></h1>
  9. <?= $this->render('_form', [
  10. 'model' => $model,
  11. 'points_vente' => $points_vente,
  12. 'jours_production' => $jours_production,
  13. 'produits' => $produits,
  14. 'produits_selec' => $produits_selec,
  15. 'produits_dispos' => $produits_dispos,
  16. 'production' => $production,
  17. 'commandes_en_cours' => $commandes_en_cours,
  18. 'produits_vrac' => $produits_vrac,
  19. 'etablissements' => $etablissements,
  20. 'id_etablissement' => $id_etablissement,
  21. ]) ?>
  22. </div>