No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

234 líneas
12KB

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