Files
kupshop/web/common/templates/product/product.essox.tpl
2025-08-02 16:30:27 +02:00

39 lines
1.5 KiB
Smarty
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{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}