Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

31 line
864B

  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. 'etablissement_paiement_ok' => $etablissement_paiement_ok,
  22. ]) ?>
  23. </div>