DIR : /home/kozerus/public_html/zc/adam/includes/javascript/product.php

/home/kozerus/public_html/zc/adam/includes/javascript

<script>
    let tax_rates = [];
<?php
    foreach($tax_class_array as $key => $value) {
        if ($key === 0) continue;
        echo '    tax_rates["' . $value['id'] . '"] = ' . zen_get_tax_rate_value($value['id']) . ';' . "\n";
    }
?>

    function doRound(x, places) {
        return Math.round(x * Math.pow(10, places)) / Math.pow(10, places);
    }

    function getTaxRate() {
        const parameterVal = $('select[name="products_tax_class_id"]').val();
        if ((parameterVal > 0) && (tax_rates[parameterVal] > 0)) {
            return tax_rates[parameterVal];
        } else {
            return 0;
        }
    }

    function updateGross() {
        const taxRate = getTaxRate();
        let grossValue = $('input[name="products_price"]').val();

        if (taxRate > 0) {
            grossValue = grossValue * ((taxRate / 100) + 1);
        }

        $('input[name="products_price_gross"]').val(doRound(grossValue, 4));
    }

    function updateNet() {
        const taxRate = getTaxRate();
        let netValue = $('input[name="products_price_gross"]').val();

        if (taxRate > 0) {
            netValue = netValue / ((taxRate / 100) + 1);
        }

        $('input[name="products_price"]').val(doRound(netValue, 4));
    }
</script>
//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer