39 lines
1.5 KiB
Smarty
39 lines
1.5 KiB
Smarty
{if !$product}
|
||
{$product = $body.product}
|
||
{/if}
|
||
|
||
{ifmodule PAYMENTS__ESSOX_ROZDELENI}
|
||
{get_payment_method name="Essox2Rozdeleni" assign="essoxRozdeleni"}
|
||
{$splitPrice = $essoxRozdeleni->getEssoxCalcDetail($product.productPrice->getPriceWithVat())}
|
||
{/ifmodule}
|
||
|
||
{ifmodule PAYMENTS__ESSOX_SPLATKY}
|
||
{get_payment_method name="Essox2Splatky" assign="essoxSplatky"}
|
||
{$url = $essoxSplatky->getEssoxCalcDetail($product.productPrice->getPriceWithVat())}
|
||
{/ifmodule}
|
||
|
||
{if $splitPrice or $url}
|
||
<div class="essox-bank-banner">
|
||
{if $splitPrice}
|
||
<div class="essox-bank-banner-item">
|
||
<p><span class="fc icons_calendar"></span>{t}Rozložená platba{/t}</p>
|
||
<img src="/common/static/images/essox-payment.svg" alt="Essox" loading="lazy">
|
||
<p><strong>{$splitPrice.parts} × {$splitPrice.price|format_price} </strong></p>
|
||
</div>
|
||
{/if}
|
||
|
||
{if $url}
|
||
<div class="essox-bank-banner-item">
|
||
<p><span class="fc icons_calculator"></span>{t}Nákup na splátky{/t}</p>
|
||
<img src="/common/static/images/essox-payment.svg" alt="Essox" loading="lazy" data-essox>
|
||
<p>
|
||
<a href="{$url}" target="_new" data-essox>
|
||
<strong>{t}Spočítejte si výhodné splátky{/t}</strong>
|
||
</a>
|
||
</p>
|
||
</div>
|
||
{/if}
|
||
<p>{t}Tento způsob platby ESSOX zvolíte v košíku.{/t} <a href="{url s=page label='credit-purchase'}" target="_blank">{t}Více informací.{/t}</a></p>
|
||
</div>
|
||
{/if}
|