|
- <?php
-
-
-
- use common\models\Producer ;
- use common\helpers\GlobalParam ;
- $producer = GlobalParam::getCurrentProducer() ;
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->name); ?>,</p>
-
- <p>Votre commande d'une valeur de <strong><?= $order->getAmountWithTax(Order::AMOUNT_TOTAL, true); ?></strong> a bien été prise en compte.</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); ?>
|