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