39 lines
1.9 KiB
Smarty
39 lines
1.9 KiB
Smarty
{if $button_shoppingcart_config != 'disabled'}
|
|
<div id="caraty" class="table_block" align="right">
|
|
<script type="text/javascript">
|
|
function reformatPrice(price) {
|
|
if (price.length === 0) {
|
|
return false;
|
|
}
|
|
return parseFloat(price.textContent.replace(',', '.').replace(/[^\d.]/g, ""));
|
|
}
|
|
|
|
function PoliczRateCA() {
|
|
let price = '{$cena_raty}';
|
|
let priceObj = document.querySelectorAll('.cart-total');
|
|
if (priceObj.length > 0) {
|
|
let lastIndex = priceObj.length - 1
|
|
price = priceObj[lastIndex];
|
|
}
|
|
|
|
price = reformatPrice(price);
|
|
if (price !== false) {
|
|
window.open('https://ewniosek.credit-agricole.pl/eWniosek/simulator.jsp?PARAM_TYPE=RAT&PARAM_PROFILE={$psp}&PARAM_CREDIT_AMOUNT=' + price + '{if isset($caraty_offer_id)}{if $caraty_offer_id != ''}&offerId={$caraty_offer_id}{/if}{/if}', 'Policz_rate', "toolbar=yes,scrollbars=yes,resizable=yes");
|
|
}
|
|
}
|
|
</script>
|
|
{if $button_shoppingcart_config != 'hidden'}
|
|
<a onclick="return PoliczRateCA();"
|
|
style="cursor: pointer;" target="raty_symulator" title="Kupuj na Raty!">
|
|
{if isset($caraty_logo_auto)}
|
|
<img align="middle" alt="" id="caraty_img_auto" style="display:block; z-index:10;"
|
|
src="{$caraty_logo_auto.url}?creditAmount={$cena_raty}&posId={$psp}&imgType={$caraty_logo_auto.type}{if isset($caraty_offer_id)}{if $caraty_offer_id != ''}&offerId={$caraty_offer_id}{/if}{/if}">
|
|
{else}
|
|
<img align="middle" alt="" src="{$caraty_logo_calc}" style="display:block; z-index:10;">
|
|
{/if}
|
|
</a>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
|