|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
-
-
-
- use common\models\Producer ;
- use common\helpers\GlobalParam ;
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->name); ?>,</p>
-
- <p>Votre commande <?= ($order->reference && strlen($order->reference) > 0) ? 'N°'.$order->reference : '' ?> d'une valeur de <strong><?= $order->getAmountWithTax(Order::AMOUNT_TOTAL, true); ?></strong> a bien été prise en compte.</p>
-
- <p>Récapitulatif des produits commandés :</p>
- <p><?= $order->getCartSummary() ?></p>
-
- <p>Elle sera à retirer le <strong><?= date('d/m/Y',strtotime($distribution->date)) ?></strong> au point de retrait
- <strong><?= Html::encode($pointSale->name) ?></strong><?php if(strlen($pointSale->locality) > 0): ?> situé à <?= Html::encode($pointSale->locality) ?><?php endif ?>.</p>
-
- <?php $payment_infos = Producer::getConfig('option_payment_info') ; ?>
- <?php if($payment_infos && strlen($payment_infos) > 0): ?>
- <p><strong>Informations de paiement :</strong><br />
- <?= nl2br(Html::encode($payment_infos)); ?></p>
- <?php endif; ?>
-
- <?php $order_infos = Producer::getConfig('order_infos') ; ?>
- <?php if($order_infos && strlen($order_infos) > 0): ?>
- <p><strong>Informations générales :</strong><br />
- <?= nl2br(Html::encode($order_infos)); ?></p>
- <?php endif; ?>
-
- À bientôt,<br />
- <?= Html::encode($producer->name); ?>
|