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.

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