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.

39 lines
1.2KB

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model app\models\Produit */
  5. $this->title = 'Modifier une commande';
  6. //$this->params['breadcrumbs'][] = ['label' => 'Produits', 'url' => ['index']];
  7. //$this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="commande-update">
  10. <h1 class="title-systeme-commande"><span class="glyphicon glyphicon-pencil"></span> <?= Html::encode($this->title) ?></h1>
  11. <?php if($commande_introuvable): ?>
  12. <div class="alert alert-danger">Cette commande est introuvable</div><br />
  13. <a class="btn btn-default" href="<?php echo Yii::$app->urlManager->createUrl(['commande/index']); ?>">Retour</a>
  14. <?php else: ?>
  15. <?= $this->render('_form', [
  16. 'model' => $model,
  17. 'points_vente' => $points_vente,
  18. 'jours_production' => $jours_production,
  19. 'produits' => $produits,
  20. 'produits_selec' => $produits_selec,
  21. 'produits_dispos' => $produits_dispos,
  22. 'production' => $production,
  23. 'commandes_en_cours' => $commandes_en_cours,
  24. 'produits_vrac' => $produits_vrac,
  25. 'etablissements' => $etablissements,
  26. 'id_etablissement' => $id_etablissement,
  27. ]) ?>
  28. <?php endif; ?>
  29. </div>