Payments calculator - Leasing calculator

Hi

I need a feature like the example for integration with the cs-cart v2.14:



[url]Ojeté vozy Audi A1 | AAA AUTO auto bazar



Who can help me?

Having managed software development of commercial F&I applications for years, getting an addon that works correctly for the cart would be quite a chore. It took a team of developers and ongoing data-entry people to keep up with all the tax table adjustments and rates of the various suppliers… Good luck.

Another example… maybe more simple.

[url]WordPress Plugins | WordPress.org

I create a blocks/calculadora.tpl


```php

{* $Id: calculadora.tpl $ *}



Preço



Entrada (%)

10%
20%
30%
40%
50%



Meses

24
30
36
48
60
72
84



Valor da Prestação

Calcular prestação


{literal}

{/literal}





Enviar Pedido de Financiamento





Preço €



Entrada €



Prestação €



Número de Prestações



Nome



E-mail



Observações








```

and integrate a Contact Form

```php
$('#submitform').ajaxForm({
target: '#error',
success: function() {
$('#error').fadeIn('slow');
}
});
```

But the warnings opens in a blank page ....... :(
Why?


By the way....
how can i get the Product Price and passe to a input field?

Hey people,



How can i get the Product Price and passe to a custom input field?

I Just discover answer by my self…



{$product.price}

{$product.list_price}

{$product.base_price}

{$product.discount_price}



Where i can consult more about this?!



I think the documention available for developers about the CS-Cart is very poor…