|
- <?php
-
-
-
- use common\helpers\GlobalParam;
- use domain\Order\Order\Order;
- use domain\Order\Order\OrderModule;
- use yii\helpers\Html;
-
- $orderModule = OrderModule::getInstance();
- $producer = GlobalParam::getCurrentProducer() ;
-
- ?>
-
- <p>Bonjour,</p>
-
- <p>Une nouvelle commande d'une valeur de <strong><?= $orderModule->getOrderAmountWithTax($order, Order::AMOUNT_TOTAL, true); ?></strong> vient d'être passée par :</p>
-
- <ul>
- <li><strong><?= Html::encode($user->name); ?></strong></li>
- <li><?= Html::encode($user->phone); ?></li>
- <li><?= Html::encode($user->email); ?></li>
- </ul>
-
- <p>Retrait : <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>
-
- <p>À bientôt</p>
|