You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
805B

  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. <?= $this->render('_form', [
  9. 'model' => $model,
  10. 'points_vente' => $points_vente,
  11. 'jours_production' => $jours_production,
  12. 'produits' => $produits,
  13. 'produits_selec' => $produits_selec,
  14. 'produits_dispos' => $produits_dispos,
  15. 'production' => $production,
  16. 'commandes_en_cours' => $commandes_en_cours,
  17. 'produits_vrac' => $produits_vrac,
  18. 'etablissements' => $etablissements,
  19. 'id_etablissement' => $id_etablissement,
  20. 'etablissement' => $etablissement,
  21. 'etablissement_paiement_ok' => $etablissement_paiement_ok,
  22. 'credit' => $credit
  23. ]) ?>
  24. </div>