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.

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