Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

208 lines
10KB

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\Commande */
  6. /* @var $form ActiveForm */
  7. ?>
  8. <div class="commande-form">
  9. <h2 id="step-choix-etablissement">Je choisis ma boulangerie</h2>
  10. <?php if(count($etablissements)): ?>
  11. <?=
  12. $this->render('_liste_etablissements.php',[
  13. 'etablissements' => $etablissements,
  14. 'context' => 'commande',
  15. 'id_etablissement' => $id_etablissement
  16. ]) ;
  17. ?>
  18. <div class="clr"></div>
  19. <?php else: ?>
  20. <div class="alert alert-info">Veuiller <a href="<?= Yii::$app->urlManager->createUrl(['commande/index']) ; ?>">ajouter une boulangerie</a> à votre tableau de bord avant de passer commande.</div>
  21. <?php endif; ?>
  22. <?php
  23. $form = ActiveForm::begin([
  24. 'enableClientScript' => false
  25. ]);
  26. ?>
  27. <?php if($id_etablissement): ?>
  28. <h2 id="step-choix-date">Date de commande</h2>
  29. <?= $form->field($model, 'id_production')->label('')->hiddenInput(); ?>
  30. <?php if (isset($model->id)): ?>
  31. <div class="date-commande"><span><?php echo date('d/m/Y', strtotime($production->date)); ?></span></div>
  32. <?php endif; ?>
  33. <div id="datepicker-production" <?php if (isset($model->id)): ?>style="display:none"<?php endif; ?>>
  34. </div>
  35. <?php if (!isset($model->id)): ?>
  36. <br />
  37. <?php endif; ?>
  38. <div id="dates" style="display:none;">
  39. <?php
  40. foreach ($jours_production as $id_production => $j) {
  41. if ($j != '--') {
  42. echo '<div><span class="date">' . $j . '</span><span class="id_production">' . $id_production . '</span></div>';
  43. }
  44. }
  45. ?>
  46. </div>
  47. <div class="clr"></div>
  48. <div id="commandes-en-cours" style="display:none;">
  49. <?php foreach ($commandes_en_cours as $c): ?>
  50. <?php echo '<div class="commande" data-idproduction="' . $c->id_production . '" data-id="' . $c->id . '" data-href="' . Yii::$app->urlManager->createUrl(['commande/update', 'id' => $c->id, 'id_etablissement' => $c->production->id_etablissement]) . '"></div>'; ?>
  51. <?php endforeach; ?>
  52. </div>
  53. <div id="has-commande-en-cours" style="display:none;" class="alert alert-danger">Vous avez déjà une commande en cours pour cette date. <a href="#">Cliquez ici</a> pour la modifier.</div>
  54. <div class="clr"></div>
  55. <div id="depots">
  56. <h2 id="step-choix-depot">Je choisis un dépôt</h2>
  57. <?=
  58. $form->field($model, 'id_point_vente')
  59. ->label('')
  60. ->hiddenInput();
  61. //->dropDownList($points_vente) ;
  62. ?>
  63. <input type="hidden" id="livraison" value="<?php if (!is_null($production) && $production->livraison): ?>1<?php else: ?>0<?php endif; ?>" />
  64. <ul id="points-vente" class="blocs">
  65. <?php
  66. //$points_vente = PointVente::find()->all() ;
  67. foreach ($points_vente as $pv) {
  68. //print_r($pv) ;
  69. echo '<li class="bloc point-vente point-vente-' . $pv->id . '" data-vrac="' . (int) $pv->vrac . '" data-pain="' . (int) $pv->pain . '"><div class="contenu">' .
  70. '<span style="display:none;" class="id">' . $pv->id . '</span>' .
  71. '<div class="nom">' . Html::encode($pv->nom) . '</div>' .
  72. '<div class="adresse">à ' . Html::encode($pv->localite) . '</div>' .
  73. '<div class="horaires">' .
  74. '<div class="jour jour-1">' . (strlen($pv->horaires_lundi) ? nl2br(Html::encode($pv->horaires_lundi)) : 'Fermé') . '</div>' .
  75. '<div class="jour jour-2">' . (strlen($pv->horaires_mardi) ? nl2br(Html::encode($pv->horaires_mardi)) : 'Fermé') . '</div>' .
  76. '<div class="jour jour-3">' . (strlen($pv->horaires_mercredi) ? nl2br(Html::encode($pv->horaires_mercredi)) : 'Fermé') . '</div>' .
  77. '<div class="jour jour-4">' . (strlen($pv->horaires_jeudi) ? nl2br(Html::encode($pv->horaires_jeudi)) : 'Fermé') . '</div>' .
  78. '<div class="jour jour-5">' . (strlen($pv->horaires_vendredi) ? nl2br(Html::encode($pv->horaires_vendredi)) : 'Fermé') . '</div>' .
  79. '<div class="jour jour-6">' . (strlen($pv->horaires_samedi) ? nl2br(Html::encode($pv->horaires_samedi)) : 'Fermé') . '</div>' .
  80. '<div class="jour jour-0">' . (strlen($pv->horaires_dimanche) ? nl2br(Html::encode($pv->horaires_dimanche)) : 'Fermé') . '</div>' .
  81. '</div>' .
  82. '</div></li>';
  83. }
  84. ?>
  85. </ul>
  86. <div class="clr"></div>
  87. </div>
  88. <div id="produits">
  89. <h2 id="step-choix-produits">Mes produits</h2>
  90. <?php // confiance ?>
  91. <input type="hidden" id="confiance" value="<?php echo (int) Yii::$app->user->identity->confiance; ?>" />
  92. <?php if (!Yii::$app->user->identity->confiance): ?>
  93. <div id="mess-limit-quantity" class="alert alert-warning"><strong>Attention,</strong> vous ne pouvez commander que 3 produits.</div>
  94. <?php endif; ?>
  95. <?php // erreur ?>
  96. <?php if (Yii::$app->session->getFlash('error')): ?>
  97. <div class="alert alert-danger"><div class="icon"></div><?= Yii::$app->session->getFlash('error'); ?></div>
  98. <?php endif; ?>
  99. <div id="pain">
  100. <div class="alert alert-warning indisponible">Pain indisponible pour ce point de vente</div>
  101. <table class="table table-bordered" id="table-produits">
  102. <thead>
  103. <tr>
  104. <th class="th-photo">Photo</th>
  105. <th class="produit">Produit</th>
  106. <th class="prix-unit">Prix unitaire</th>
  107. <th class="colonne-quantite">Quantité</th>
  108. <th class="total">Total</th>
  109. </tr>
  110. </thead>
  111. <tbody>
  112. <?php foreach ($produits as $p): ?>
  113. <tr class="produit-<?php echo $p->id; ?>" <?php if (count($produits_dispos) && !$produits_dispos[$p->id]['actif']): ?>style="display:none;"<?php endif; ?>>
  114. <td class="td-photo">
  115. <?php if (strlen($p->photo) && file_exists(dirname(__FILE__).'/../../web/uploads/' . $p->photo)): ?><a href="<?= Yii::$app->urlManager->getBaseUrl() . '/uploads/' . $p->photo ?>" data-lightbox="produit-<?php echo $p->id; ?>"><img class="photo img-rounded" src="<?= Yii::$app->urlManager->getBaseUrl() . '/uploads/' . $p->photo ?>" alt="Photo <?= Html::encode($p->nom); ?>" /></a><?php endif; ?>
  116. </td>
  117. <td class="produit">
  118. <span class="nom"><?= Html::encode($p->nom); ?></span> - <span class="description"><?= Html::encode($p->getDescription()); ?></span><br />
  119. <span class="recette"><?= Html::encode($p->recette); ?></span>
  120. </td>
  121. <td class="prix-unit"><span class="prix"><?= number_format($p->prix, 2); ?></span> €</td>
  122. <td class="colonne-quantite">
  123. <div class="input-group">
  124. <span class="input-group-btn">
  125. <button type="button" class="btn btn-default move-quantity moins">-</button>
  126. </span>
  127. <?php
  128. $quantite = 0;
  129. if (isset($produits_selec[$p->id]))
  130. $quantite = $produits_selec[$p->id];
  131. ?>
  132. <input type="text" value="<?php if (isset($produits_selec[$p->id])): echo $produits_selec[$p->id];
  133. else: ?>0<?php endif; ?>" readonly name="Produit[produit_<?php echo $p->id; ?>]" class="quantity form-control">
  134. <span class="input-group-btn">
  135. <button type="button" class="btn btn-default move-quantity plus">+</button>
  136. </span>
  137. </div>
  138. <div class="quantite-restante">Reste <span class="nb"><?php if (isset($produits_dispos[$p->id])): echo $produits_dispos[$p->id]['quantite_restante'] + $quantite;
  139. endif; ?></span> <?php echo Html::encode(strtolower($p->nom)); ?>(s)</div>
  140. <div class="epuise">Épuisé</div>
  141. </td>
  142. <td class="total"><strong></strong></td>
  143. </tr>
  144. <?php endforeach; ?>
  145. </tbody>
  146. <tfoot>
  147. <tr>
  148. <td></td>
  149. <td></td>
  150. <td></td>
  151. <!-- <td><strong><span id="total-commande">0</span> €</strong></td> -->
  152. <td id="total-commande"><strong></strong></td>
  153. </tr>
  154. </tfoot>
  155. </table>
  156. </div>
  157. </div>
  158. <div id="bar-fixed">
  159. <div class="container">
  160. <?php if (isset($model->id)): ?>
  161. <a href="<?php echo Yii::$app->urlManager->createUrl(['commande/annuler', 'id' => $model->id]); ?>" class="btn btn-danger annuler-commande">Annuler ma commande</a>
  162. <?php endif; ?>
  163. <span id="total-commande-bottom"><span></span> €</span>
  164. <?= Html::submitButton('<span class="glyphicon glyphicon-comment"></span>', ['class' => 'btn btn-default btn-commentaire', 'data-placement' => 'top', 'data-toggle' => 'tooltip', 'data-original-title' => 'Ajouter un commentaire']) ?>
  165. <?= Html::submitButton('Valider ma commande', ['class' => 'btn btn-primary valider-commande']) ?>
  166. <div class="clr"></div>
  167. <?= $form->field($model, 'commentaire')->textarea(['rows' => 3, 'placeholder' => 'Un commentaire ?'])->label(''); ?>
  168. </div>
  169. </div>
  170. <?php
  171. // id_etablissement
  172. endif; ?>
  173. <?php ActiveForm::end(); ?>
  174. </div><!-- commande-form -->