При закупуване на конфигурация ползвате отстъпка.
Конфигуратор
function calculateTotalPrice(){
var totalPrice = 0;
var price = 0;
$('configurator').getElements().each(function(s, index){
if(s.tagName=='SELECT'){
var partCode = $(s).value;
if(partCode!=0){
var partPrice = window.prices[partCode];
var qntName = "q" + s.id;
if(partPrice!=undefined){
totalPrice = totalPrice + ($(qntName).value*partPrice);
}
}
}
if(s.tagName=='INPUT'){
}
});
price = totalPrice;
window.discount = parseFloat(window.discount);
if(window.tax && totalPrice){
totalPrice = totalPrice + window.tax;
}
if(window.discount){
totalPrice = totalPrice - (totalPrice*window.discount)/100;
}
if( totalPrice ){
totalPrice = totalPrice * 1.2;
}
$('total').value = formatAsMoney(totalPrice);
$('price').value = formatAsMoney(price);
}
function isValidNumber(el){
if(el.value){
el.value = parseInt(el.value)? parseInt(el.value): 1;
}
}
function setOnBlur(el){
if(!el.value){
el.value = 1;
}
calculateTotalPrice();
}
// Do empty calculation
//calculateTotalPrice();