LivraisonParSecteurs : rajout de quelques infos dans le template front
This commit is contained in:
@@ -25,6 +25,7 @@
|
||||
</hook>
|
||||
<hook id="lps.front.hookmanager" class="LivraisonParSecteurs\Hook\FrontHook">
|
||||
<tag name="hook.event_listener" event="order-delivery.extra" type="front" method="onOrderDeliveryExtra" />
|
||||
<tag name="hook.event_listener" event="order-invoice.delivery-address" type="front" method="displayDeliveryDate" />
|
||||
</hook>
|
||||
</hooks>
|
||||
|
||||
|
||||
@@ -41,6 +41,29 @@ class FrontHook extends BaseHook
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
public function displayDeliveryDate(HookRenderEvent $event)
|
||||
{
|
||||
if ((null !== $order = $this->getSession()->getOrder()) && $order->getDeliveryModuleId() == LivraisonParSecteurs::getModuleId())
|
||||
{
|
||||
$selectedDay = $this->getSession()->get(LivraisonParSecteurs::LPS_DELIVERY_DATE);
|
||||
$beginTime = $this->getSession()->get(LivraisonParSecteurs::LPS_DELIVERY_BEGIN_TIME);
|
||||
$endTime = $this->getSession()->get(LivraisonParSecteurs::LPS_DELIVERY_END_TIME);
|
||||
|
||||
if ( (null !== $selectedDay) && (null !== $beginTime) && (null !== $endTime) )
|
||||
{
|
||||
$event->add(
|
||||
$this->render(
|
||||
'delivery-address.html', [
|
||||
'day' => $selectedDay,
|
||||
'begin_time' => $beginTime,
|
||||
'end_time' => $endTime
|
||||
])
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -21,9 +21,13 @@ class LivraisonParSecteurs extends AbstractDeliveryModule
|
||||
{
|
||||
/** @var string */
|
||||
const DOMAIN_NAME = 'livraisonparsecteurs';
|
||||
const MESSAGE_DOMAIN = "livraisonparsecteurs";
|
||||
const MESSAGE_DOMAIN = 'livraisonparsecteurs';
|
||||
const VARIABLE_MINIMUM_DELAY = 'minimum_delay_before_order';
|
||||
|
||||
const LPS_AREA_SCHEDULE_ID = 'lps_area_schedule_id';
|
||||
const LPS_CHOSEN_ADDRESS = 'lps_chosen_delivery_address';
|
||||
const LPS_DELIVERY_DATE = 'lps_delivery_date';
|
||||
const LPS_DELIVERY_BEGIN_TIME = 'lps_begin_time';
|
||||
const LPS_DELIVERY_END_TIME = 'lps_end_time';
|
||||
|
||||
/**
|
||||
* @param ConnectionInterface|null $con
|
||||
@@ -117,6 +121,7 @@ class LivraisonParSecteurs extends AbstractDeliveryModule
|
||||
$date = new \DateTime();
|
||||
$date->add(new DateInterval('P'. $minimumDelayBeforeOrder . 'D'));
|
||||
|
||||
$nextPossibleDay = '';
|
||||
switch ($baseDay) {
|
||||
case 0 :
|
||||
$nextPossibleDay = $date->modify('next monday');
|
||||
|
||||
@@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
namespace LivraisonParSecteurs\Loop;
|
||||
|
||||
use LivraisonParSecteurs\LivraisonParSecteurs;
|
||||
use LivraisonParSecteurs\Model\LpsAreaSchedule;
|
||||
use LivraisonParSecteurs\Model\LpsAreaScheduleQuery;
|
||||
use Thelia\Core\Template\Element\BaseLoop;
|
||||
use Thelia\Core\Template\Element\LoopResult;
|
||||
use Thelia\Core\Template\Element\LoopResultRow;
|
||||
use Thelia\Core\Template\Element\PropelSearchLoopInterface;
|
||||
use Thelia\Core\Template\Loop\Argument\Argument;
|
||||
use Thelia\Core\Template\Loop\Argument\ArgumentCollection;
|
||||
use Thelia\Model\OrderQuery;
|
||||
|
||||
/**
|
||||
* @package LivraisonParSecteurs\Loop
|
||||
*/
|
||||
class SelectedDeliveryDate extends BaseLoop implements PropelSearchLoopInterface
|
||||
{
|
||||
protected function getArgDefinitions()
|
||||
{
|
||||
return new ArgumentCollection(
|
||||
Argument::createIntTypeArgument('order_id')
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
public function buildModelCriteria()
|
||||
{
|
||||
if (null !== $orderId = $this->getOrderId())
|
||||
{
|
||||
|
||||
if (null !== $order = OrderQuery::create()->findPk($orderId))
|
||||
{
|
||||
return MondialRelayPickupAddressQuery::create()
|
||||
->filterByOrderAddressId($order->getDeliveryOrderAddressId());
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public function parseResults(LoopResult $loopResult)
|
||||
{
|
||||
foreach ($loopResult->getResultDataCollection() as $item) {
|
||||
$loopResultRow = new LoopResultRow($item);
|
||||
$loopResultRow
|
||||
->set("ID", $relayData['id'])
|
||||
->set("LATITUDE", $relayData['latitude'])
|
||||
->set("LONGITUDE", $relayData['longitude'])
|
||||
->set("ZIPCODE", $relayData['zipcode'])
|
||||
->set("CITY", $relayData['city'])
|
||||
->set("COUNTRY", $relayData['country'])
|
||||
->set("NAME", $relayData['name'])
|
||||
->set("ADDRESS", $relayData['address'])
|
||||
->set("DISTANCE", $relayData['distance'])
|
||||
->set("OPENINGS", $relayData['openings'])
|
||||
;
|
||||
|
||||
$loopResult->addRow($loopResultRow);
|
||||
}
|
||||
|
||||
return $loopResult;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{strip}
|
||||
|
||||
<div class="panel panel-default col-sm-6">
|
||||
{loop type="address" name="delivery-address" id={order attr="delivery_address"}}
|
||||
<div class="panel-heading">{intl l="Delivery address"}</div>
|
||||
<div class="panel-body">
|
||||
<span class="fn">{loop type="title" name="customer.title.info" id=$TITLE}{$SHORT}{/loop} {$LASTNAME|upper} {$FIRSTNAME|ucwords}</span>
|
||||
<span class="org">{$COMPANY}</span>
|
||||
<address class="adr">
|
||||
<span class="street-address">{$ADDRESS1}</span><br>
|
||||
{if $ADDRESS2 != ""}
|
||||
<span class="street-address">{$ADDRESS2}</span><br>
|
||||
{/if}
|
||||
{if $ADDRESS3 != ""}
|
||||
<span class="street-address">{$ADDRESS3}</span><br>
|
||||
{/if}
|
||||
<span class="postal-code">{$ZIPCODE} </span>
|
||||
<span class="locality">{$CITY}
|
||||
</address>
|
||||
</div>
|
||||
{/loop}
|
||||
|
||||
<div class="panel-heading">{intl l="Delivery day" d="livraisonparsecteurs"}</div>
|
||||
<div class="panel-body">
|
||||
<span>{$day} entre {format_date date=$begin_time format="H:i"} et {format_date date=$end_time format="H:i"}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/strip}
|
||||
@@ -1,8 +1,6 @@
|
||||
<script type="text/html" id="lps_ui">
|
||||
|
||||
|
||||
<td colspan="3">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
{form name="thelia.order.delivery"}
|
||||
|
||||
@@ -39,7 +39,7 @@ class DeliveryListener extends BaseAction implements EventSubscriberInterface
|
||||
* @param OrderEvent $event
|
||||
* @throws \Propel\Runtime\Exception\PropelException
|
||||
*/
|
||||
public function updateCurrentDeliveryAddress(OrderEvent $event, $eventName, EventDispatcherInterface $dispatcher)
|
||||
public function recordCurrentDeliveryAddress(OrderEvent $event, $eventName, EventDispatcherInterface $dispatcher)
|
||||
{
|
||||
/** @var Request $request */
|
||||
$request = $this->requestStack->getCurrentRequest();
|
||||
@@ -48,39 +48,74 @@ class DeliveryListener extends BaseAction implements EventSubscriberInterface
|
||||
$session = $request->getSession();
|
||||
|
||||
if ($event->getDeliveryModule() == LivraisonParSecteurs::getModuleId()) {
|
||||
|
||||
$con = Propel::getConnection();
|
||||
$con->beginTransaction();
|
||||
$query = new OrderDeliverySchedule();
|
||||
|
||||
if (null !== $scheduleId = $request->get('lps-choosen-day', null)) {
|
||||
try {
|
||||
$query->setScheduleId($scheduleId);
|
||||
$session->set(LivraisonParSecteurs::LPS_AREA_SCHEDULE_ID, $scheduleId);
|
||||
$session->set(LivraisonParSecteurs::LPS_CHOSEN_ADDRESS, $session->getOrder()->getChoosenDeliveryAddress());
|
||||
|
||||
$query->setDeliveryAddressId($request->getSession()->getOrder()->getChoosenDeliveryAddress());
|
||||
$schedule = LpsAreaScheduleQuery::create()->findOneById($scheduleId);
|
||||
$chosenDate = LivraisonParSecteurs::calculateRelativeDate($schedule->getDay());
|
||||
$scheduleId = $session->get(LivraisonParSecteurs::LPS_AREA_SCHEDULE_ID);
|
||||
$schedule = LpsAreaScheduleQuery::create()->findOneById($scheduleId);
|
||||
|
||||
$format = 'Y-m-d H:i:s';
|
||||
$startDate = DateTime::createFromFormat($format, $chosenDate->format('Y-m-d ') . $schedule->getBeginTime()->format('H:i:s'));
|
||||
$query->setDueDeliveryTimeStart($startDate);
|
||||
$endDate = DateTime::createFromFormat($format, $chosenDate->format('Y-m-d ') . $schedule->getEndTime()->format('H:i:s'));
|
||||
$query->setDueDeliveryTimeEnd($endDate);
|
||||
$chosenDate = LivraisonParSecteurs::calculateRelativeDate($schedule->getDay());
|
||||
|
||||
$query->save($con);
|
||||
$con->commit();
|
||||
}
|
||||
catch (ProcessFileException $e) {
|
||||
throw new TheliaProcessException("PlanificationLivraison : Impossible to record this schedule");
|
||||
}
|
||||
// On sauvegarde la date de livraison choisie avec les heures, pour affichage ultérieur.
|
||||
$completeDay = LivraisonParSecteurs::getDayLabel($schedule->getDay());
|
||||
$completeDay .= " " . $chosenDate->format("d/m");
|
||||
$session->set(LivraisonParSecteurs::LPS_DELIVERY_DATE, $completeDay);
|
||||
$session->set(LivraisonParSecteurs::LPS_DELIVERY_BEGIN_TIME, $schedule->getBeginTime());
|
||||
$session->set(LivraisonParSecteurs::LPS_DELIVERY_END_TIME, $schedule->getEndTime());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param OrderEvent $event
|
||||
* @throws \Propel\Runtime\Exception\PropelException
|
||||
*/
|
||||
public function updateCurrentDeliveryAddress(OrderEvent $event)
|
||||
{
|
||||
/** @var Session $session */
|
||||
$session = $this->requestStack->getCurrentRequest()->getSession();
|
||||
|
||||
$order = $event->getOrder();
|
||||
|
||||
$deliveryModuleId = $order->getDeliveryModuleId();
|
||||
if ($deliveryModuleId == LivraisonParSecteurs::getModuleId()) {
|
||||
$scheduleId = $session->get(LivraisonParSecteurs::LPS_AREA_SCHEDULE_ID);
|
||||
$orderId = $order->getId();
|
||||
|
||||
$con = Propel::getConnection();
|
||||
$con->beginTransaction();
|
||||
$query = new OrderDeliverySchedule();
|
||||
try {
|
||||
$query->setOrderId($orderId);
|
||||
$query->setScheduleId($scheduleId);
|
||||
$query->setDeliveryAddressId($session->get('choosenDeliveryAddress'));
|
||||
|
||||
$schedule = LpsAreaScheduleQuery::create()->findOneById($scheduleId);
|
||||
$chosenDate = LivraisonParSecteurs::calculateRelativeDate($schedule->getDay());
|
||||
|
||||
$format = 'Y-m-d H:i:s';
|
||||
$startDate = DateTime::createFromFormat($format, $chosenDate->format('Y-m-d ') . $schedule->getBeginTime()->format('H:i:s'));
|
||||
$query->setDueDeliveryTimeStart($startDate);
|
||||
$endDate = DateTime::createFromFormat($format, $chosenDate->format('Y-m-d ') . $schedule->getEndTime()->format('H:i:s'));
|
||||
$query->setDueDeliveryTimeEnd($endDate);
|
||||
|
||||
$query->save($con);
|
||||
$con->commit();
|
||||
}
|
||||
catch (ProcessFileException $e) {
|
||||
throw new TheliaProcessException("PlanificationLivraison : Impossible to record this schedule");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static function getSubscribedEvents()
|
||||
{
|
||||
return [
|
||||
TheliaEvents::ORDER_SET_DELIVERY_MODULE => ['updateCurrentDeliveryAddress', 64]
|
||||
TheliaEvents::ORDER_SET_DELIVERY_MODULE => ['recordCurrentDeliveryAddress', 64],
|
||||
TheliaEvents::ORDER_BEFORE_PAYMENT => ['updateCurrentDeliveryAddress', 64]
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
463
templates/frontOffice/custom/order-invoice.html
Normal file
463
templates/frontOffice/custom/order-invoice.html
Normal file
@@ -0,0 +1,463 @@
|
||||
{extends file="layout.tpl"}
|
||||
|
||||
{* Security *}
|
||||
{block name="no-return-functions" prepend}
|
||||
{check_auth role="CUSTOMER" login_tpl="login"}
|
||||
{check_cart_not_empty}
|
||||
{check_valid_delivery}
|
||||
{/block}
|
||||
|
||||
{* Body Class *}
|
||||
{block name="body-class"}page-order-invoice{/block}
|
||||
|
||||
{* Breadcrumb *}
|
||||
{block name='no-return-functions' append}
|
||||
{$breadcrumbs = [
|
||||
['title' => {intl l="Cart"}, 'url'=>{url path="/cart"}],
|
||||
['title' => {intl l="My order"}, 'url'=>{url path="/order/invoice"}]
|
||||
]}
|
||||
{/block}
|
||||
|
||||
|
||||
{block name="main-content"}
|
||||
<div class="main">
|
||||
<article class="col-main" role="main" aria-labelledby="main-label">
|
||||
|
||||
<h1 id="main-label" class="page-header">{intl l="Check my order"}</h1>
|
||||
|
||||
{include file="misc/checkout-progress.tpl" step="invoice"}
|
||||
|
||||
{hook name="order-invoice.top"}
|
||||
|
||||
{form name="thelia.order.coupon"}
|
||||
|
||||
<form id="form-coupon" action="{url path="/order/coupon"}" method="post" {form_enctype}>
|
||||
|
||||
{form_hidden_fields}
|
||||
|
||||
{form_field field='success_url'}
|
||||
<input type="hidden" name="{$name}" value="{url path="/order/invoice"}" />
|
||||
{/form_field}
|
||||
|
||||
{form_field field='error_url'}
|
||||
<input type="hidden" name="{$name}" value="{url path="/order/invoice"}" />
|
||||
{/form_field}
|
||||
|
||||
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
|
||||
|
||||
<table class="table table-cart table-bordered">
|
||||
<colgroup>
|
||||
<col width="150">
|
||||
<col>
|
||||
<col width="200">
|
||||
<col width="250">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="image"> </th>
|
||||
<th class="product">
|
||||
<span class="hidden-xs">{intl l="Product Name"}</span>
|
||||
<span class="visible-xs">{intl l="Name"}</span>
|
||||
</th>
|
||||
<th class="unitprice">
|
||||
<span class="hidden-xs">{intl l="Unit Price"}</span>
|
||||
<span class="visible-xs">{intl l="Price"}</span>
|
||||
</th>
|
||||
<th class="unitprice">
|
||||
<span class="hidden-xs">{intl l="Unit Taxed Price"}</span>
|
||||
<span class="visible-xs">{intl l="Taxed Price"}</span>
|
||||
</th>
|
||||
<th class="qty">
|
||||
<span class="hidden-xs">{intl l="Quantity"}</span>
|
||||
<span class="visible-xs">{intl l="Qty"}</span>
|
||||
</th>
|
||||
<th class="subprice">
|
||||
<span class="hidden-xs">{intl l="Total incl. tax"}</span>
|
||||
<span class="visible-xs">{intl l="Total incl.tax"}</span>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
{loop type="cart" name="cartloop"}
|
||||
<tr>
|
||||
<td class="image">
|
||||
<a href="{$PRODUCT_URL nofilter}">
|
||||
{assign var="product_image_url" value=null}
|
||||
{ifloop rel="pse-first-image"}
|
||||
{loop type="product-sale-elements-image" name="pse-first-image" product_sale_elements_id=$PRODUCT_SALE_ELEMENTS_ID limit="1"}
|
||||
{loop type="image" name="product-image" id=$PRODUCT_IMAGE_ID product=$PRODUCT_ID limit="1" width="118" height="85" force_return="true"}
|
||||
{assign var="product_image_url" value=$IMAGE_URL}
|
||||
{/loop}
|
||||
{/loop}
|
||||
{/ifloop}
|
||||
{elseloop rel="pse-first-image"}
|
||||
{loop type="image" name="product-image" product=$PRODUCT_ID limit="1" width="118" height="85" force_return="true"}
|
||||
{assign var="product_image_url" value=$IMAGE_URL}
|
||||
{/loop}
|
||||
{/elseloop}
|
||||
{if $product_image_url}
|
||||
<img itemprop="image" src="{$product_image_url nofilter}" alt="Product #{$LOOP_COUNT}">
|
||||
{else}
|
||||
<img itemprop="image" src="{image file='assets/dist/img/product/1/118x85.png'}" alt="Product #{$LOOP_COUNT}">
|
||||
{/if}
|
||||
</a>
|
||||
</td>
|
||||
<td class="product" >
|
||||
<h3 class="name">
|
||||
<a href="{$PRODUCT_URL nofilter}">{$TITLE}</a>
|
||||
</h3>
|
||||
<div class="product-options">
|
||||
<dl class="dl-horizontal">
|
||||
<dt class="stockView">{intl l="Available"} :</dt>
|
||||
{if $STOCK > 0}
|
||||
<dd>{intl l="In Stock"}</dd>
|
||||
{else}
|
||||
<dd>{intl l="Out of Stock"}</dd>
|
||||
{/if}
|
||||
{loop type="product_sale_elements" name="ref" id=$PRODUCT_SALE_ELEMENTS_ID}
|
||||
<dt class="refView">{intl l="No."}</dt>
|
||||
<dd>{$REF}</dd>
|
||||
{/loop}
|
||||
|
||||
{loop type="attribute_combination" name="product_options" product_sale_elements="$PRODUCT_SALE_ELEMENTS_ID"}
|
||||
<dt class="attributeView">{$ATTRIBUTE_TITLE}</dt>
|
||||
<dd>{$ATTRIBUTE_AVAILABILITY_TITLE}</dd>
|
||||
{/loop}
|
||||
</dl>
|
||||
</div>
|
||||
</td>
|
||||
<td class="unitprice">
|
||||
<div class="secondary-price">
|
||||
<span class="price">{format_money number=$REAL_PRICE}</span>
|
||||
</div>
|
||||
</td>
|
||||
<td class="unitprice">
|
||||
<div class="secondary-price">
|
||||
<div class="special-price"><span class="price">{format_money number=$REAL_TAXED_PRICE}</span>
|
||||
{if $IS_PROMO == 1}
|
||||
<small class="old-price">{intl l="instead of"} <span class="price">{format_money number=$TAXED_PRICE}</span></small>
|
||||
{/if}
|
||||
</div>
|
||||
</td>
|
||||
<td class="qty">
|
||||
<span class="price">{$QUANTITY}</span>
|
||||
</td>
|
||||
<td class="subprice">
|
||||
<span class="price">
|
||||
{format_money number=$REAL_TOTAL_TAXED_PRICE}
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
{/loop}
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-md-offset-6 col-sm-9 col-sm-offset-3 col-xs-12">
|
||||
<table class="table table-cart table-bordered table-cart-total">
|
||||
<tfoot>
|
||||
{$discount={order attr="discount"}}
|
||||
<tr>
|
||||
<th class="coupon"><label for="coupon">{intl l="You may have a coupon ?"}</label></th>
|
||||
<td class="coupon">
|
||||
{form_field field='success_url'}
|
||||
<input type="hidden" name="{$name}" value="{url path="/order/invoice"}" />
|
||||
{/form_field}
|
||||
{form_field field='coupon-code'}
|
||||
<div class="{if $error}has-error{/if}">
|
||||
<div class="input-group">
|
||||
<label class="control-label sr-only" for="code">{intl l='Code :'}</label>
|
||||
<input id="coupon" class="form-control" type="text" name="{$name}" value="{$value}" placeholder="{intl l='Coupon code'}" required>
|
||||
<span class="input-group-btn">
|
||||
<button type="submit" class="btn btn-default">{intl l="Ok"}</button>
|
||||
</span>
|
||||
</div>
|
||||
{if $error}<span class="help-block">{$message}</span>{/if}
|
||||
</div>
|
||||
{/form_field}
|
||||
<!-- /input-group -->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{intl l="Cart total excl. taxes"}</th>
|
||||
<td>
|
||||
<div>
|
||||
<span class="price">{format_money number={cart attr="total_price_without_discount"}}</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>{intl l="Taxes total"}</th>
|
||||
<td>
|
||||
<div>
|
||||
<span class="price">{format_money number={cart attr="total_tax_amount_without_discount"}}</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>{intl l="Cart total incl. taxes"}</th>
|
||||
<td>
|
||||
<div>
|
||||
<span class="price">{format_money number={cart attr="total_taxed_price_without_discount"}}</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{if $discount > 0}
|
||||
<tr>
|
||||
<th class="discount">
|
||||
{intl l="Discount incl. taxes"}
|
||||
<br>{intl l="Tax: %tax" tax={format_money number={cart attr="discount_tax_amount"} currency_id=$CURRENCY}}
|
||||
</th>
|
||||
<td class="shipping">
|
||||
<div class="total-price">
|
||||
<span class="price">-{format_money number=$discount}</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
|
||||
{if {cart attr="is_virtual"} != 1}
|
||||
<tr>
|
||||
<th class="shipping">
|
||||
{intl l="Shipping"}
|
||||
{$postageTax = {order attr="postage_tax"}}
|
||||
{if $postageTax > 0}
|
||||
<br>
|
||||
{intl l="Including %tax tax" tax={format_money number=$postageTax}}
|
||||
{/if}
|
||||
</th>
|
||||
<td class="shipping">
|
||||
<div class="shipping-price">
|
||||
<span class="price">{format_money number={order attr="postage"}}</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
|
||||
<tr>
|
||||
<th class="total">{intl l="Total incl. taxes"}</th>
|
||||
<td class="total">
|
||||
<div class="total-price">
|
||||
<span class="price">{format_money number={{cart attr="total_taxed_price"} + {order attr="postage"}}}</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{hook name="order-invoice.coupon-form"}
|
||||
</form>
|
||||
{/form}
|
||||
|
||||
{form name="thelia.order.payment"}
|
||||
{assign var="isPost" value=$smarty.post|count}
|
||||
<form id="form-cart-payment" action="{url path="/order/invoice"}" method="post" {form_enctype}>
|
||||
|
||||
{form_hidden_fields}
|
||||
|
||||
{form_field field="error_url"}
|
||||
<input type="hidden" name="{$name}" value="{url path="/order/invoice"}">
|
||||
{/form_field}
|
||||
|
||||
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
|
||||
|
||||
<div id="cart-address" class="row">
|
||||
{ifhook rel="order-invoice.delivery-address"}
|
||||
{* delivery module can customize the delivery address *}
|
||||
{hook name="order-invoice.delivery-address" modulecode="LivraisonParSecteurs"}
|
||||
{/ifhook}
|
||||
{elsehook rel="order-invoice.delivery-address"}
|
||||
<div class="panel panel-default col-sm-6">
|
||||
{loop type="address" name="delivery-address" id={order attr="delivery_address"}}
|
||||
<div class="panel-heading">{intl l="Delivery address"}</div>
|
||||
<div class="panel-body">
|
||||
<span class="fn">{loop type="title" name="customer.title.info" id=$TITLE}{$SHORT}{/loop} {$LASTNAME|upper} {$FIRSTNAME|ucwords}</span>
|
||||
<span class="org">{$COMPANY}</span>
|
||||
<address class="adr">
|
||||
<span class="street-address">{$ADDRESS1}</span><br>
|
||||
{if $ADDRESS2 != ""}
|
||||
<span class="street-address">{$ADDRESS2}</span><br>
|
||||
{/if}
|
||||
{if $ADDRESS3 != ""}
|
||||
<span class="street-address">{$ADDRESS3}</span><br>
|
||||
{/if}
|
||||
<span class="postal-code">{$ZIPCODE}</span>
|
||||
<span class="locality">{$CITY},
|
||||
<span class="country-name">{loop type="country" name="customer.country.info" id=$COUNTRY}{$TITLE}{/loop}</span></span>
|
||||
{if $STATE}, <span class="state-name">{loop type="state" name="customer.state.info" id=$STATE}{$TITLE}{/loop}</span></span>{/if}
|
||||
</address>
|
||||
</div>
|
||||
{/loop}
|
||||
</div>
|
||||
{/elsehook}
|
||||
|
||||
{form_field field='invoice-address'}
|
||||
<div class="panel panel-default col-sm-6">
|
||||
<div class="panel-heading">{intl l="Billing address"}</div>
|
||||
|
||||
{if $error}
|
||||
<span class="help-block"><span class="fa fa-remove"></span> {$message}</span>
|
||||
{/if}
|
||||
|
||||
<div class="panel-body">
|
||||
{loop type="address" name="invoice-address"}
|
||||
{assign var="isInvoiceAddressChecked" value="0"}
|
||||
{if $isPost}
|
||||
{if $value == $ID && $value != ""}
|
||||
{assign var="isInvoiceAddressChecked" value="1"}
|
||||
{elseif $DEFAULT}
|
||||
{assign var="isInvoiceAddressChecked" value="1"}
|
||||
{/if}
|
||||
{elseif $DEFAULT}
|
||||
{assign var="isInvoiceAddressChecked" value="1"}
|
||||
{/if}
|
||||
|
||||
<div class="radio">
|
||||
<label for="invoice-address_{$ID}">
|
||||
<input type="radio" name="{$name}" id="invoice-address_{$ID}" value="{$ID}"{if $isInvoiceAddressChecked} checked="checked"{/if}>
|
||||
<span class="fn">{loop type="title" name="customer.title.info" id=$TITLE}{$SHORT}{/loop} {$LASTNAME|upper} {$FIRSTNAME|ucwords}</span>
|
||||
<span class="org">{$COMPANY}</span>
|
||||
<address class="adr">
|
||||
<span class="street-address">{$ADDRESS1}</span><br>
|
||||
{if $ADDRESS2 != ""}
|
||||
<span class="street-address">{$ADDRESS2}</span><br>
|
||||
{/if}
|
||||
{if $ADDRESS3 != ""}
|
||||
<span class="street-address">{$ADDRESS3}</span><br>
|
||||
{/if}
|
||||
<span class="postal-code">{$ZIPCODE}</span>
|
||||
<span class="locality">{$CITY},
|
||||
<span class="country-name">{loop type="country" name="customer.country.info" id=$COUNTRY}{$TITLE}{/loop}</span></span>
|
||||
{if $STATE}, <span class="state-name">{loop type="state" name="customer.state.info" id=$STATE}{$TITLE}{/loop}</span></span>{/if}
|
||||
</address>
|
||||
</label>
|
||||
</div>
|
||||
{/loop}
|
||||
<a href="#" class="btn btn-change-address btn-link hidden"><i class="fa fa-pencil"></i> {intl l="Change address"}</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/form_field}
|
||||
|
||||
{form_field field='payment-module'}
|
||||
|
||||
<div id="payment-method" class="panel panel-default">
|
||||
<div class="panel-heading">{intl l="Choose your payment method"}</div>
|
||||
|
||||
{if $error}
|
||||
<span class="help-block"><span class="fa fa-remove"></span> {$message}</span>
|
||||
{/if}
|
||||
|
||||
<div class="panel-body">
|
||||
<ul class="list-group">
|
||||
{loop type="payment" name="payments" force_return="true"}
|
||||
{assign "paymentModuleId" $ID}
|
||||
<li class="list-group-item text-left">
|
||||
<label for="payment_{$paymentModuleId}">
|
||||
<input type="radio" name="{$name}" id="payment_{$paymentModuleId}" value="{$paymentModuleId}" {if ($LOOP_TOTAL ==1 && $LOOP_COUNT == 1) || ($value == $paymentModuleId)}checked{/if}>
|
||||
{loop type="image" name="paymentspicture" source="module" source_id=$ID force_return="true" width="100" height="72"}
|
||||
<img src="{$IMAGE_URL nofilter}" alt="{intl l="Pay with %module_title" module_title={$TITLE}}">
|
||||
{/loop}
|
||||
{$TITLE}
|
||||
</label>
|
||||
{hook name="order-invoice.payment-extra" module={$paymentModuleId}}
|
||||
</li>
|
||||
{/loop}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{/form_field}
|
||||
|
||||
{form_field field="agreed"}
|
||||
<div class="well">
|
||||
<div class="form-group group-agreed{if $error} has-error{/if}">
|
||||
<div class="control-input">
|
||||
<div class="checkbox">
|
||||
<label class="control-label" for="{$label_attr.for}">
|
||||
<input type="checkbox" name="{$name}" id="{$label_attr.for}" value="{$value}"{if $checked} checked{/if} {if $required} aria-required="true" required{/if}>
|
||||
{$termsAndConditionsId={config key="terms_conditions_content_id"}}
|
||||
{if $termsAndConditionsId}
|
||||
{loop name="content-terms" type="content" id=$termsAndConditionsId}
|
||||
{$termsAndConditionsUrl=$URL}
|
||||
{/loop}
|
||||
{/if}
|
||||
{intl l="I've read and agreed on <a href='%link' class='terms-quickview'>Terms & Conditions</a>" link={$termsAndConditionsUrl nofilter}}.
|
||||
</label>
|
||||
{if $error }
|
||||
<span class="help-block">{$message}</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div><!--/.form-group-->
|
||||
</div>
|
||||
{/form_field}
|
||||
|
||||
{hook name="order-invoice.payment-form"}
|
||||
|
||||
<a href="{url path="/order/delivery"}" role="button" class="btn btn-default"><i class="fa fa-chevron-left"></i> {intl l="Back"}</a>
|
||||
<button type="submit" class="btn btn-primary pull-right"><i class="fa fa-chevron-right"></i> {intl l="Next Step"}</button>
|
||||
</form>
|
||||
{/form}
|
||||
{hook name="order-invoice.bottom"}
|
||||
</article>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name="javascript-initialization"}
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
$('#cart-address').each(function(){
|
||||
var $radio = $('.radio', this),
|
||||
$btn = $('.btn-change-address');
|
||||
|
||||
// Hide other invoice address
|
||||
$radio.filter( function(){ return !$(this).find(':radio').is(':checked'); }).hide();
|
||||
$btn
|
||||
.removeClass('hidden')
|
||||
.bind('click.btn-change-address', function(){
|
||||
$radio.show();
|
||||
$(this).hide();
|
||||
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
$(".terms-quickview").on('click', function (ev) {
|
||||
ev.preventDefault();
|
||||
|
||||
$.get(this.href, function (data) {
|
||||
// Hide all currently active bootbox dialogs
|
||||
bootbox.hideAll();
|
||||
// Show dialog
|
||||
bootbox.dialog({
|
||||
message : '<div class="clearfix">'+$("#content-main",data).html()+'</div>',
|
||||
onEscape: function() {
|
||||
bootbox.hideAll();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
{hook name="order-invoice.javascript-initialization"}
|
||||
{/block}
|
||||
|
||||
{block name="stylesheet"}
|
||||
{hook name="order-invoice.stylesheet"}
|
||||
{/block}
|
||||
|
||||
{block name="after-javascript-include"}
|
||||
{hook name="order-invoice.after-javascript-include"}
|
||||
{/block}
|
||||
|
||||
@@ -270,7 +270,7 @@
|
||||
<div id="cart-address" class="row">
|
||||
{ifhook rel="order-invoice.delivery-address"}
|
||||
{* delivery module can customize the delivery address *}
|
||||
{hook name="order-invoice.delivery-address" module={order attr="delivery_module"}}
|
||||
{hook name="order-invoice.delivery-address" module="{order attr="delivery_module"}"}
|
||||
{/ifhook}
|
||||
{elsehook rel="order-invoice.delivery-address"}
|
||||
<div class="panel panel-default col-sm-6">
|
||||
|
||||
Reference in New Issue
Block a user