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.

614 lines
43KB

  1. <?php
  2. /**
  3. * Copyright distrib (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. use common\helpers\GlobalParam;
  38. use domain\Distribution\Distribution\DistributionModule;
  39. use domain\Distribution\PointSaleDistribution\PointSaleDistribution;
  40. use domain\Producer\Producer\Producer;
  41. use domain\Producer\Producer\ProducerModule;
  42. use yii\helpers\Html;
  43. \producer\assets\VuejsOrderOrderAsset::register($this);
  44. $distributionModule =DistributionModule::getInstance();
  45. $producerModule = ProducerModule::getInstance();
  46. $producer = $this->context->getProducerCurrent();
  47. $this->setTitle('Commander');
  48. ?>
  49. <script>
  50. var appInitValues = {
  51. urlLogin: '<?= \Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/producer', 'id' => $this->context->getProducerCurrent()->id, 'return_url' => \Yii::$app->urlManagerProducer->createAbsoluteUrl(['order/order', 'slug_producer' => $this->context->getProducerCurrent()->slug])]) ?>',
  52. producerOptionOrderEntryPoint: '<?= $producer->option_order_entry_point ?>',
  53. <?php if (isset($order)): ?>pointSaleActiveId: <?= $order->id_point_sale ?><?php endif; ?>
  54. };
  55. </script>
  56. <div id="app-order-order" :class="{'loaded': !loadingInit}">
  57. <?php if (isset($order)): ?>
  58. <span id="order-distribution-date"><?= $order->distribution->date; ?></span>
  59. <?php endif; ?>
  60. <?php if (isset($date)): ?>
  61. <span id="distribution-date"><?= $date; ?></span>
  62. <?php endif; ?>
  63. <div v-if="loadingInit">
  64. Chargement ...
  65. </div>
  66. <div class="wrapper">
  67. <div v-if="!loadingInit && distributions.length == 0" class="alert alert-warning">
  68. Aucune distribution à venir chez ce producteur.
  69. </div>
  70. <div v-else>
  71. <div id="steps">
  72. <ul class="row g-0">
  73. <?php if ($producer->option_order_entry_point == Producer::ORDER_ENTRY_POINT_DATE): ?>
  74. <step-date
  75. first="true"
  76. :step="step"
  77. :point-sale-active="pointSaleActive"
  78. :date-format="dateFormat"
  79. :change-step="changeStep"
  80. :producer="producer"
  81. ></step-date>
  82. <step-point-sale
  83. :step="step"
  84. :point-sale-active="pointSaleActive"
  85. :change-step="changeStep"
  86. :producer="producer"
  87. ></step-point-sale>
  88. <?php else: ?>
  89. <step-point-sale
  90. first="true"
  91. :step="step"
  92. :point-sale-active="pointSaleActive"
  93. :change-step="changeStep"
  94. :producer="producer"
  95. ></step-point-sale>
  96. <step-date
  97. :step="step"
  98. :point-sale-active="pointSaleActive"
  99. :date-format="dateFormat"
  100. :change-step="changeStep"
  101. :producer="producer"
  102. ></step-date>
  103. <?php endif; ?>
  104. <li id="step-products" :class="'col-md-4 '+((step == 'products') ? 'active ' : '')">
  105. <button @click="changeStep('products')"
  106. :class="'btn '+ (step == 'products' ? 'btn-primary' : 'btn-default')"
  107. :disabled="step == 'date' || step == 'point-sale'">
  108. <span class="button-content"><span
  109. class="glyphicon glyphicon-th-list"></span> Produits</span>
  110. </button>
  111. <div class="info-step" v-if="oneProductOrdered()">
  112. {{ countProductOrdered() }} produit{{ (countProductOrdered() > 1) ? 's' : '' }}
  113. </div>
  114. </li>
  115. <!--<li id="step-payment" :class="'col-md-3 '+((step == 'payment') ? 'active' : '')">
  116. <button @click="changeStep('payment')"
  117. :class="'btn '+ (step == 'payment' ? 'btn-primary' : 'btn-default')"
  118. :disabled="step == 'date' || step == 'point-sale' || step == 'products'">
  119. <span class="button-content"><span
  120. class="glyphicon glyphicon-ok"></span> Confirmation</span>
  121. </button>
  122. </li>-->
  123. </ul>
  124. <div class="clr"></div>
  125. </div>
  126. <div class="content">
  127. <div v-if="order" class="alert alert-warning alert-edit-order">
  128. <div class="glyphicon glyphicon-pencil"></div>
  129. Attention, vous êtes en train de modifier votre commande du <strong>{{ dateFormat }}</strong>.
  130. </div>
  131. <div v-if="errors && errors.length" class="alert alert-danger">
  132. <ul>
  133. <li v-for="error in errors">
  134. <div v-html="error"></div>
  135. </li>
  136. </ul>
  137. </div>
  138. <div v-else-if="loading && step != 'payment'">
  139. Chargement ...
  140. </div>
  141. <transition name="slide">
  142. <div id="content-step-date" v-if="step == 'date'">
  143. <div v-if="!loading">
  144. <?php if ($producer->behavior_order_select_distribution == Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST): ?>
  145. <div style="display:none ;">
  146. <?php endif; ?>
  147. <div id="legend">
  148. <div><span id="distribution-date-color"></span> Prochains jours de distribution
  149. </div>
  150. <div><span id="order-date-color"></span> Vos commandes déjà enregistrées</div>
  151. </div>
  152. <div id="calendar">
  153. <v-calendar
  154. is-inline
  155. is-expanded
  156. v-model="date"
  157. mode="single"
  158. color="green"
  159. :columns="calendar.columns"
  160. :formats="calendar.formats"
  161. :theme-styles="calendar.themeStyles"
  162. :attributes="calendar.attrs"
  163. :available-dates="calendar.availableDates"
  164. @dayclick='dayClick'
  165. ></v-calendar>
  166. </div>
  167. <?php if ($producer->behavior_order_select_distribution == Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST): ?>
  168. </div>
  169. <?php endif; ?>
  170. <?php if ($producer->behavior_order_select_distribution == Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST): ?>
  171. <div id="distributions-list">
  172. <?php $incomingDistributions = $distributionModule->findDistributionsIncoming(); ?>
  173. <?php foreach ($incomingDistributions as $distribution): ?>
  174. <?php
  175. $pointSaleDistributions = PointSaleDistribution::searchAll([
  176. 'id_distribution' => $distribution->id,
  177. 'delivery' => 1
  178. ], []);
  179. ?>
  180. <div class="panel panel-default">
  181. <div class="panel-body">
  182. <button class="btn btn-primary" @click="dayClickList"
  183. data-distribution-date="<?= $distribution->date . ' 00:00:00' ?>">
  184. Sélectionner cette distribution
  185. </button>
  186. <span class="date"><?= ucfirst(strftime('%A %d %B', strtotime($distribution->date))); ?></span>
  187. <?php
  188. if ($pointSaleDistributions && count($pointSaleDistributions) > 0) {
  189. echo '<div class="point-sales">';
  190. foreach ($pointSaleDistributions as $pointSaleDistribution) {
  191. if ($pointSaleDistribution->pointSale->status == 1) {
  192. echo $pointSaleDistribution->pointSale->name . '';
  193. if (strlen($pointSaleDistribution->pointSale->locality)) {
  194. echo ' (' . $pointSaleDistribution->pointSale->locality . ')';
  195. }
  196. echo '<br />';
  197. }
  198. }
  199. echo '</div>';
  200. }
  201. ?>
  202. </div>
  203. </div>
  204. <?php endforeach; ?>
  205. </div>
  206. <?php endif; ?>
  207. </div>
  208. </div>
  209. </transition>
  210. <transition name="slide">
  211. <div id="content-step-point-sale" v-if="step == 'point-sale'">
  212. <div v-if="!loading">
  213. <h3>Où souhaitez-vous récupérer votre commande ?</h3>
  214. <table id="points-sale" class="table table-striped" v-if="pointsSale.length">
  215. <thead>
  216. <tr>
  217. <th>Point de vente</th>
  218. <th>Localité</th>
  219. <th></th>
  220. </tr>
  221. </thead>
  222. <tbody>
  223. <tr v-for="pointSale in orderedPointsSale"
  224. v-if="pointSale && (producer.option_order_entry_point == 'point-sale' || (producer.option_order_entry_point == 'date' && pointSale.pointSaleDistribution.delivery))"
  225. :class="(pointSaleActive && pointSale.id == pointSaleActive.id) ? 'selected' : ''">
  226. <td class="name">
  227. <span class="the-name">{{ pointSale.name }}</span>
  228. <div class="comment" v-if="pointSale.userPointSale">
  229. {{ pointSale.userPointSale.comment }}
  230. </div>
  231. <div class="comment" v-if="pointSale.infos && pointSale.infos.length > 0"
  232. v-html="pointSale.infos"></div>
  233. <div class="minimum-order-amount" v-if="pointSale.minimum_order_amount">
  234. Montant minimum de commande : {{ formatPrice(pointSale.minimum_order_amount) }}
  235. </div>
  236. </td>
  237. <td class="locality">{{ pointSale.locality }}</td>
  238. <td class="actions">
  239. <template
  240. v-if="(order == null || order.id_point_sale != pointSale.id) && pointSale.maximum_number_orders && pointSale.count_orders && pointSale.count_orders >= pointSale.maximum_number_orders">
  241. <span class="label label-default">
  242. <template v-if="pointSale.is_bread_box">
  243. Déjà réservée
  244. </template>
  245. <template v-else>
  246. Maximum de commande atteint
  247. </template>
  248. </span>
  249. </template>
  250. <template v-else>
  251. <div :class="'form-group' + (pointSale.invalid_code ? ' has-error' : '')">
  252. <div class="input-group"
  253. v-if="pointSale.code && pointSale.code.length > 0">
  254. <span class="input-group-addon"><span
  255. class="glyphicon glyphicon-lock"></span></span>
  256. <input v-model="pointsSaleCodes[pointSale.id]" type="password"
  257. placeholder="Code" class="form-control input-code"/>
  258. </div>
  259. </div>
  260. <div v-if="!user && producer.credit == 1 && pointSale.credit == 1">
  261. <a :href="urlLogin" class="btn btn-default">
  262. <span class="glyphicon glyphicon-log-in"></span>
  263. Connexion obligatoire
  264. </a>
  265. </div>
  266. <div v-else>
  267. <button class="btn btn-primary" @click="pointSaleClick"
  268. :data-code="pointSale.code && pointSale.code.length > 0"
  269. :data-id-point-sale="pointSale.id">
  270. <span class="glyphicon glyphicon-map-marker"></span>
  271. Choisir
  272. </button>
  273. </div>
  274. </template>
  275. </td>
  276. </tr>
  277. </tbody>
  278. </table>
  279. <div class="alert alert-warning" v-else>
  280. Aucun point de vente disponible pour ce jour de distribution.
  281. </div>
  282. </div>
  283. </div>
  284. </transition>
  285. <transition name="slide">
  286. <div id="content-step-products" v-if="step == 'products'">
  287. <div v-if="!loading">
  288. <div v-if="products.length">
  289. <table id="products" class="table table-bordered">
  290. <thead>
  291. <tr>
  292. <th class="photo">Photo</th>
  293. <th class="name">Nom</th>
  294. <th class="price">Prix unitaire</th>
  295. <th class="quantity">Quantité</th>
  296. <th class="total">Total</th>
  297. </tr>
  298. </thead>
  299. <tbody>
  300. <template v-for="category in categories">
  301. <tr v-if="category.id && countProductsByCategory(category)">
  302. <td class="category-name" colspan="5" @click="setCategoryCurrent(category)">
  303. <span v-if="categoryCurrent && categoryCurrent.id == category.id"
  304. class="glyphicon glyphicon-triangle-bottom"></span>
  305. <span v-else class="glyphicon glyphicon-triangle-right"></span>
  306. {{ category.name }}
  307. <span class="label label-default">{{ countProductsByCategory(category) }} produit<template
  308. v-if="countProductsByCategory(category) > 1">s</template></span>
  309. <span v-if="countSelectedProductsByCategory(category) > 0"
  310. class="label label-success">{{ countSelectedProductsByCategory(category) }} produit<template
  311. v-if="countSelectedProductsByCategory(category) > 1">s</template> sélectionné<template
  312. v-if="countSelectedProductsByCategory(category) > 1">s</template></span>
  313. </td>
  314. </tr>
  315. <template v-if="(categoryCurrent && categoryCurrent.id == category.id) || category.id == null">
  316. <tr v-for="product in products"
  317. v-if="product.id_product_category == category.id && isProductAvailable(product)">
  318. <td class="photo">
  319. <a class="product-photo" :href="product.photo_big" :title="product.name">
  320. <img v-if="product.photo.length" class="photo-product" :src="product.photo"/>
  321. </a>
  322. </td>
  323. <td class="name product-name-description-block">
  324. <span class="name">{{ product.name }}</span>
  325. <span class="other">
  326. <span v-if="product.weight">({{ product.weight }}&nbsp;g)</span>
  327. </span>
  328. <div>
  329. <span v-if="product.quantity_max > 0 && ((product.quantity_form / product.coefficient_unit == product.quantity_remaining) || ((product.quantity_remaining * product.coefficient_unit) - product.quantity_form) < product.step)"
  330. class="label label-danger">Épuisé</span>
  331. </div>
  332. <div class="description" v-if="product.description.length">
  333. {{ product.description }}
  334. </div>
  335. <div class="description-long" v-if="product.recipe.length">
  336. <a href="javascript:void(0);" class="show-more-link">En savoir
  337. plus</a>
  338. <div class="content">
  339. {{ product.recipe }}
  340. </div>
  341. </div>
  342. </td>
  343. <td class="price-unit">
  344. <template v-if="productHasPrice(product)">
  345. <div>
  346. {{ formatPrice(getBestProductPrice(product.id,
  347. product.quantity_form)) }}<br/>
  348. <span class="price-infos">{{ product.wording_unit }}</span>
  349. <template v-if="product.unit == 'piece' && product.weight">
  350. <br />
  351. <span class="price-infos">
  352. {{ formatPrice(product.price_unit_ref) }} / kg
  353. </span>
  354. </template>
  355. </div>
  356. <div v-if="productHasPriceWithFromQuantity(product)"
  357. class="alert alert-info decreasing-prices">
  358. <ul>
  359. <li v-for="price in product.prices"
  360. v-if="price.from_quantity > 0">
  361. <strong>{{ formatPrice(price.price_with_tax)
  362. }}</strong><br/>à partir de {{
  363. price.from_quantity }} {{ product.wording_unit_ref
  364. }}
  365. </li>
  366. </ul>
  367. </div>
  368. </template>
  369. </td>
  370. <td class="td-quantity">
  371. <template v-if="productHasPrice(product)">
  372. <div class="input-group">
  373. <span class="input-group-btn">
  374. <button class="btn btn-secondary btn-moins"
  375. type="button"
  376. @click="productQuantityClick(product, product.unit == 'piece' ? -1 : -parseFloat(product.step))"
  377. :disabled="product.quantity_form == 0">
  378. <i class="bi bi-dash-lg"></i></button>
  379. </span>
  380. <input type="text" v-model="product.quantity_form"
  381. class="form-control quantity" readonly="readonly"/>
  382. <span class="input-group-text">{{ product.unit == 'piece' ? 'p.' : product.unit }}</span>
  383. <span class="input-group-btn">
  384. <button class="btn btn-secondary btn-plus"
  385. type="button"
  386. @click="productQuantityClick(product, product.unit == 'piece' ? 1 : parseFloat(product.step))"
  387. :disabled="product.quantity_form == product.quantity_remaining && product.quantity_max > 0">
  388. <i class="bi bi-plus-lg"></i></button>
  389. </span>
  390. </div>
  391. </template>
  392. </td>
  393. <td class="price-total">
  394. <template
  395. v-if="productHasPrice(product) && product.quantity_form > 0">
  396. {{ formatPrice(getBestProductPrice(product.id,
  397. product.quantity_form) * (product.quantity_form /
  398. product.coefficient_unit )) }}
  399. </template>
  400. </td>
  401. </tr>
  402. </template>
  403. </template>
  404. <tr class="total">
  405. <td class="summary" colspan="4">
  406. <template v-if="priceTotal() > 0">
  407. <h3>&gt; Résumé</h3>
  408. <ul>
  409. <li v-for="product in products" v-if="product.quantity_form > 0">
  410. <span class="quantity">{{ product.quantity_form }} {{ product.unit == 'piece' ? 'p.' : product.unit }} x</span>
  411. <span class="name">{{ product.name }}</span>
  412. <!--<span class="other">
  413. <span v-if="product.description.length">/</span>
  414. <span class="description">{{ product.description }}</span>-->
  415. <span class="other">
  416. <span v-if="product.weight">({{ product.weight }}&nbsp;g)</span>
  417. </span>
  418. </li>
  419. </ul>
  420. </template>
  421. </td>
  422. <td class="price-total">{{ priceTotal(true) }}</td>
  423. </tr>
  424. </tbody>
  425. </table>
  426. <div id="content-step-payment">
  427. <div>
  428. <div class="delivery">
  429. <div class="delivery-home" v-if="pointSaleActive.is_home_delivery">
  430. <label for="deliver-address">Adresse de livraison</label>
  431. <textarea id="deliver-address" v-model="deliveryAddress" class="form-control"
  432. required="required"></textarea>
  433. </div>
  434. </div>
  435. <div class="comment">
  436. <label for="order-comment">Commentaire</label>
  437. <textarea id="order-comment" v-model="comment" class="form-control"></textarea>
  438. </div>
  439. <template
  440. v-if="producer.credit == 1 && pointSaleActive.credit == 1 && (pointSaleActive.credit_functioning == 'mandatory' || (pointSaleActive.credit_functioning == 'user' && user.credit_active)) && !checkCreditLimit(order) ">
  441. <div class="alert alert-danger">
  442. Vous devez
  443. <template v-if="producer.online_payment == 1"><a
  444. href="<?= \Yii::$app->urlManager->createUrl(['credit/add']) ?>">recharger
  445. votre crédit</a></template>
  446. <template v-else>recharger votre crédit</template>
  447. auprès de votre producteur ou supprimer des produits.</span>
  448. Votre producteur n'autorise pas un crédit inférieur
  449. à <strong>{{ formatPrice(producer.credit_limit) }}</strong>.
  450. </div>
  451. <div class="block-actions">
  452. <a class="btn btn-primary"
  453. href="<?= \Yii::$app->urlManager->createUrl(['site/index']) ?>">Retour à
  454. l'accueil</a>
  455. </div>
  456. </template>
  457. <template v-else>
  458. <div class="credit">
  459. <div v-if="user && producer.credit == 1 && pointSaleActive.credit == 1 && (pointSaleActive.credit_functioning != 'user' || (pointSaleActive.credit_functioning == 'user' && user.credit_active))">
  460. <input type="checkbox" id="use-credit" v-model="useCredit" disabled="disabled"
  461. v-if="pointSaleActive.credit_functioning == 'mandatory' || (pointSaleActive.credit_functioning == 'user' && user.credit_active)"/>
  462. <input type="checkbox" id="use-credit" v-model="useCredit" v-else/> <label
  463. for="use-credit">Utiliser mon Crédit ({{ formatPrice(user.credit)
  464. }})</label>
  465. <div class="info" v-if="useCredit">
  466. <template v-if="order == null || order.amount_paid == 0">
  467. <span v-if="checkCreditLimit(order)">{{ priceTotal(true) }} seront débités</span>
  468. <span v-else>
  469. {{ formatPrice(user.credit) }} seront débités. (Limite de crédit à {{ formatPrice(producer.credit_limit) }})<br/>
  470. Restera {{ formatPrice(priceTotal() - user.credit) }} à régler.
  471. </span>
  472. </template>
  473. <template
  474. v-else-if="order != null && order.amount_paid > 0 && order.amount_paid < priceTotal()">
  475. <span v-if="checkCreditLimit(order)">{{ formatPrice(priceTotal() - order.amount_paid) }} seront débités</span>
  476. <span v-else>
  477. {{ formatPrice(user.credit) }} seront débités. (Limite de crédit à {{ formatPrice(producer.credit_limit) }})<br/>
  478. Restera {{ formatPrice(priceTotal() - order.amount_paid - user.credit) }} à régler.
  479. </span>
  480. </template>
  481. <template v-else-if="order != null && order.amount_paid > priceTotal()">
  482. <span>{{ formatPrice(order.amount_paid - priceTotal()) }} seront remboursés</span>
  483. </template>
  484. </div>
  485. </div>
  486. <div v-else>
  487. <span class="glyphicon glyphicon-chevron-right"></span>
  488. <?php if ($producerModule->isOnlinePaymentActiveAndTypeOrder($producer)): ?>
  489. La commande est à payer en ligne lors de l'étape suivante.
  490. <?php elseif ($producer->option_payment_info && strlen($producer->option_payment_info) > 0): ?>
  491. Confirmez votre commande et retrouvez les informations liées au paiement sur la page suivante.
  492. <?php else: ?>
  493. La commande sera à régler sur place.
  494. <?php endif; ?>
  495. </div>
  496. </div>
  497. <div id="signup-guest" v-if="!user && producer.option_allow_order_guest">
  498. <h3>Informations personnelles</h3>
  499. <form action="#">
  500. <div class="form-group field-signupguest-email required">
  501. <label class="control-label" for="signupguest-email">Email</label>
  502. <input type="email" id="signupguest-email" class="form-control"
  503. name="SignupForm[email]">
  504. <p class="help-block help-block-error"></p>
  505. </div>
  506. <div class="form-group field-signupguest-firstname required">
  507. <label class="control-label" for="signupguest-firstname">Prénom</label>
  508. <input type="text" id="signupguest-firstname" class="form-control"
  509. name="SignupForm[firstname]">
  510. <p class="help-block help-block-error"></p>
  511. </div>
  512. <div class="form-group field-signupguest-lastname required">
  513. <label class="control-label" for="signupguest-lastname">Nom</label>
  514. <input type="text" id="signupguest-lastname" class="form-control"
  515. name="SignupForm[lastname]">
  516. <p class="help-block help-block-error"></p>
  517. </div>
  518. <div class="form-group field-signupguest-phone required">
  519. <label class="control-label" for="signupguest-phone">Téléphone</label>
  520. <input type="text" id="signupguest-phone" class="form-control"
  521. name="SignupForm[phone]">
  522. <p class="help-block help-block-error"></p>
  523. </div>
  524. </form>
  525. </div>
  526. <div class="block-actions">
  527. <button class="btn btn-primary" disabled="disabled" v-if="disableConfirmButton || !oneProductOrdered()">Je
  528. confirme ma commande
  529. </button>
  530. <button class="btn btn-primary" v-else @click="confirmClick">Je confirme ma
  531. commande
  532. </button>
  533. </div>
  534. </template>
  535. </div>
  536. </div>
  537. </div>
  538. <div class="alert alert-warning" v-else>
  539. Aucun produit disponible
  540. </div>
  541. </div>
  542. </div>
  543. </transition>
  544. <transition name="slide">
  545. </transition>
  546. </div>
  547. </div>
  548. <!--<div v-if="producer != null && producer.online_payment && producer.option_online_payment_type == 'credit'"
  549. id="credit-online-payment">
  550. <div class="panel panel-default">
  551. <div class="panel-heading">
  552. <i class="glyphicon glyphicon-euro"></i> Paiement en ligne
  553. <a href="<?= \Yii::$app->urlManager->createUrl(['credit/add']) ?>" class="btn btn-sm btn-default"><i
  554. class="glyphicon glyphicon-credit-card"></i> Créditer mon compte</a>
  555. </div>
  556. <div class="panel-body">
  557. Vous utilisez le crédit pour régler vos commandes ? Simplifiez les paiements avec votre producteur
  558. en créditant votre compte par carte bancaire.
  559. </div>
  560. </div>
  561. </div>-->
  562. <?= $this->render('_block_infos'); ?>
  563. </div>
  564. </div>
  565. <script type="text/x-template" id="template-step-date">
  566. <li id="step-date" :class="'col-md-4'+((step == 'date') ? ' active' : '')+(first ? ' first' : '')">
  567. <button @click="changeStep('date')" :class="'btn '+ (step == 'date' ? 'btn-primary' : 'btn-default')"
  568. :disabled="producer && producer.option_order_entry_point == 'point-sale' && !pointSaleActive">
  569. <span class="button-content"><span class="glyphicon glyphicon-time"></span> Date</span></span>
  570. </button>
  571. <div class="info-step" v-if="dateFormat">
  572. {{ dateFormat }}
  573. </div>
  574. </li>
  575. </script>
  576. <script type="text/x-template" id="template-step-point-sale">
  577. <li id="step-point-sale" :class="'col-md-4'+((step == 'point-sale') ? ' active ' : '')+(first ? ' first' : '')">
  578. <button @click="changeStep('point-sale')"
  579. :class="'btn '+ (step == 'point-sale' ? 'btn-primary' : 'btn-default')"
  580. :disabled="producer && (producer.option_order_entry_point == 'date' && step == 'date')">
  581. <span class="button-content"><span
  582. class="glyphicon glyphicon-map-marker"></span> <?= $producerModule->getPointSaleWording($producer); ?></span>
  583. </button>
  584. <div class="info-step" v-if="pointSaleActive">
  585. {{ pointSaleActive.name }}
  586. </div>
  587. </li>
  588. </script>