Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

293 rindas
15KB

  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. foreach ($points_vente as $pv) {
  71. $commentaire = '' ;
  72. if(isset($pv->pointVenteUser) && is_array($pv->pointVenteUser) && count($pv->pointVenteUser))
  73. {
  74. foreach($pv->pointVenteUser as $pvu)
  75. {
  76. if($pvu->id_user == Yii::$app->user->identity->id && strlen($pvu->commentaire))
  77. {
  78. $commentaire = '<div class="commentaire"><span>'.Html::encode($pvu->commentaire).'</span></div>' ;
  79. }
  80. }
  81. }
  82. $html_code = '' ;
  83. $data_code = '0' ;
  84. if(strlen($pv->code))
  85. {
  86. if(!isset($model->id_point_vente) || $model->id_point_vente != $pv->id)
  87. {
  88. $html_code .= '<span class="glyphicon glyphicon-lock"></span> ' ;
  89. $data_code = '1' ;
  90. }
  91. }
  92. echo '<li class="bloc point-vente point-vente-' . $pv->id . '" data-code="'.$data_code.'" data-vrac="' . (int) $pv->vrac . '" data-pain="' . (int) $pv->pain . '" data-credit-pain="'.(int) $pv->credit_pain.'"><div class="contenu">' .
  93. '<span style="display:none;" class="id">' . $pv->id . '</span>' .
  94. '<div class="nom">' .$html_code. Html::encode($pv->nom) . '</div>' .
  95. '<div class="adresse">à ' . Html::encode($pv->localite) . '</div>' .
  96. '<div class="horaires">' .
  97. '<div class="jour jour-1">' . (strlen($pv->horaires_lundi) ? nl2br(Html::encode($pv->horaires_lundi)) : 'Fermé') . '</div>' .
  98. '<div class="jour jour-2">' . (strlen($pv->horaires_mardi) ? nl2br(Html::encode($pv->horaires_mardi)) : 'Fermé') . '</div>' .
  99. '<div class="jour jour-3">' . (strlen($pv->horaires_mercredi) ? nl2br(Html::encode($pv->horaires_mercredi)) : 'Fermé') . '</div>' .
  100. '<div class="jour jour-4">' . (strlen($pv->horaires_jeudi) ? nl2br(Html::encode($pv->horaires_jeudi)) : 'Fermé') . '</div>' .
  101. '<div class="jour jour-5">' . (strlen($pv->horaires_vendredi) ? nl2br(Html::encode($pv->horaires_vendredi)) : 'Fermé') . '</div>' .
  102. '<div class="jour jour-6">' . (strlen($pv->horaires_samedi) ? nl2br(Html::encode($pv->horaires_samedi)) : 'Fermé') . '</div>' .
  103. '<div class="jour jour-0">' . (strlen($pv->horaires_dimanche) ? nl2br(Html::encode($pv->horaires_dimanche)) : 'Fermé') . '</div>' .
  104. '</div>'
  105. . $commentaire .
  106. '<input type="hidden" name="code_point_vente_'.$pv->id.'" value="" />'.
  107. '</div></li>';
  108. }
  109. ?>
  110. </ul>
  111. <div class="clr"></div>
  112. </div>
  113. <div id="produits">
  114. <h2 id="step-choix-produits">Mes produits</h2>
  115. <?php // confiance ?>
  116. <input type="hidden" id="confiance" value="<?php echo (int) Yii::$app->user->identity->confiance; ?>" />
  117. <?php if (!Yii::$app->user->identity->confiance): ?>
  118. <div id="mess-limit-quantity" class="alert alert-warning"><strong>Attention,</strong> vous ne pouvez commander que 3 produits.</div>
  119. <?php endif; ?>
  120. <?php // erreur ?>
  121. <?php if (Yii::$app->session->getFlash('error')): ?>
  122. <div class="alert alert-danger"><div class="icon"></div><?= Yii::$app->session->getFlash('error'); ?></div>
  123. <?php endif; ?>
  124. <div id="pain">
  125. <div class="alert alert-warning indisponible">Pain indisponible pour ce point de vente</div>
  126. <table class="table table-bordered" id="table-produits">
  127. <thead>
  128. <tr>
  129. <th class="th-photo">Photo</th>
  130. <th class="produit">Produit</th>
  131. <th class="prix-unit">Prix unitaire</th>
  132. <th class="colonne-quantite">Quantité</th>
  133. <th class="total">Total</th>
  134. </tr>
  135. </thead>
  136. <tbody>
  137. <?php foreach ($produits as $p): ?>
  138. <?php
  139. $quantite = 0;
  140. if (isset($produits_selec[$p->id]))
  141. $quantite = $produits_selec[$p->id];
  142. ?>
  143. <tr class="produit-<?php echo $p->id; ?>" data-quantite-max="<?= $quantite ?>" <?php if (count($produits_dispos) && !$produits_dispos[$p->id]['actif']): ?>style="display:none;"<?php endif; ?>>
  144. <td class="td-photo">
  145. <?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; ?>
  146. </td>
  147. <td class="produit">
  148. <span class="nom"><?= Html::encode($p->nom); ?></span> - <span class="description"><?= Html::encode($p->getDescription()); ?></span><br />
  149. <span class="recette"><?= Html::encode($p->recette); ?></span>
  150. </td>
  151. <td class="prix-unit"><span class="prix"><?= number_format($p->prix, 2); ?></span> €</td>
  152. <td class="colonne-quantite">
  153. <div class="input-group">
  154. <span class="input-group-btn">
  155. <button type="button" class="btn btn-default move-quantity moins">-</button>
  156. </span>
  157. <input type="text" value="<?php if (isset($produits_selec[$p->id])): echo $produits_selec[$p->id];
  158. else: ?>0<?php endif; ?>" readonly name="Produit[produit_<?php echo $p->id; ?>]" class="quantity form-control">
  159. <span class="input-group-btn">
  160. <button type="button" class="btn btn-default move-quantity plus">+</button>
  161. </span>
  162. </div>
  163. <?php if($quantite): ?>
  164. <div class="quantite-restante">Reste <span class="nb"><?php if (isset($produits_dispos[$p->id])): echo $produits_dispos[$p->id]['quantite_restante'] + $quantite;
  165. endif; ?></span> <?php echo Html::encode(strtolower($p->nom)); ?>(s)</div>
  166. <?php endif; ?>
  167. <div class="epuise">Épuisé</div>
  168. </td>
  169. <td class="total"><strong></strong></td>
  170. </tr>
  171. <?php endforeach; ?>
  172. </tbody>
  173. <tfoot>
  174. <tr>
  175. <td></td>
  176. <td></td>
  177. <td></td>
  178. <!-- <td><strong><span id="total-commande">0</span> €</strong></td> -->
  179. <td id="total-commande"><strong></strong></td>
  180. </tr>
  181. </tfoot>
  182. </table>
  183. </div>
  184. </div>
  185. <?php if($id_etablissement): ?>
  186. <?php
  187. $etablissement = Etablissement::findOne($id_etablissement);
  188. ?>
  189. <div id="bar-fixed" class="<?php if($etablissement->credit_pain): ?>credit-pain<?php else: ?>no-credit-pain<?php endif; ?>">
  190. <div class="container">
  191. <?php if (isset($model->id)): ?>
  192. <a href="<?php echo Yii::$app->urlManager->createUrl(['commande/annuler', 'id' => $model->id]); ?>" class="btn btn-danger annuler-commande">Annuler ma commande</a>
  193. <?php endif; ?>
  194. <span id="total-commande-bottom"><span></span> €</span>
  195. <?= 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']) ?>
  196. <?php
  197. if($etablissement->credit_pain):
  198. $lien_credit_pain = '<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>' ; ;
  199. ?>
  200. <div id="checkbox-credit-pain" >
  201. <?php if($credit || $model->getMontantPaye()): ?>
  202. <?= 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>']) ?>
  203. <?= Html::hiddenInput('montant_credit_pain', $credit, ['id' => 'montant-credit-pain']) ?>
  204. <?= Html::hiddenInput('str_montant_credit_pain', number_format($credit,2).' €', ['id' => 'str-montant-credit-pain']) ?>
  205. <?php else: ?>
  206. <div id="info-credit-vide">
  207. Votre compte Crédit Pain est vide <?= $lien_credit_pain ?>
  208. </div>
  209. <?php endif; ?>
  210. <div id="credit-pain-disabled">Le Crédit Pain est désactivé<br /> pour ce point de vente <?= $lien_credit_pain ?></div>
  211. </div>
  212. <div class="clr"></div>
  213. <?php endif; ?>
  214. <?= $form->field($model, 'commentaire')->textarea(['rows' => 3, 'placeholder' => 'Un commentaire ?'])->label(''); ?>
  215. <div id="bloc-valider-commande">
  216. <?= Html::submitButton('<span class="glyphicon glyphicon-ok"></span> Valider ma commande', ['class' => 'btn btn-primary valider-commande']) ?>
  217. </div>
  218. <?php endif; ?>
  219. </div>
  220. </div>
  221. <?php
  222. // id_etablissement
  223. endif; ?>
  224. <?php ActiveForm::end(); ?>
  225. <!-- modal code point de vente -->
  226. <div class="modal fade" id="modal-code" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  227. <div class="modal-dialog modal-lg" role="document">
  228. <div class="modal-content">
  229. <div class="modal-header">
  230. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  231. <h4 class="modal-title" id="myModalLabel">Code d'accès</h4>
  232. </div>
  233. <div class="modal-body">
  234. <div class="alert alert-warning">
  235. Ce point de vente nécessite un code d'accès.
  236. </div>
  237. <form action="index.php?r=commande/verif-code" method="post">
  238. <input type="hidden" value="" name="id_point_vente" id="id-point-vente" />
  239. <div class="form-group field-code required">
  240. <label class="control-label" for="code">Code d'accès :</label>
  241. <input type="password" class="form-control" id="code" name="code" />
  242. <p class="help-block help-block-error" style="display:none;">Code incorrect</p>
  243. </div>
  244. <div class="form-group">
  245. <button type="submit" class="btn btn-primary">Valider</button>
  246. </div>
  247. </form>
  248. </div>
  249. </div>
  250. </div>
  251. </div>
  252. </div><!-- commande-form -->