You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
340 B

function calc_nds(summa, nds_rate, nds_type) {
switch (nds_type) {
case 2: // ндс в сумме
nds_rate = nds_rate/100;
return summa * (1 - 1 / (1 + nds_rate));
case 3: // ндс сверх суммы
return summa * nds_rate/100;
default:
return 0;
}
}