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