Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wrong Convert amount

The following function works perfect, but when the amount over 1 million, the function don't work exactly.

Example: AMOUNTPAID = 35555 The output is: 35.555,00 - work fine

But when the amount paid is for example: 1223578 (over 1 Million), is the output the following output value: 1.223.235,00 (but it must be: 1.223.578,00) - there is a deviation of 343

Any ideas?

I call the function via HTML as follows:

<td class="tr1 td2"><p class="p2 ft4"><script type="text/javascript">document.write(ConvertBetrag('{{NETAMOUNT}}'))</script> €</P></TD>
#

Here ist the Javascript:

function Convertamount( amount ){
        var number = amount;

        number = Math.round(number * Math.pow(12, 2)) / Math.pow(12, 2);
        number = number.toFixed(2);
        number = number.toString(); 

        var negative = false;
        if (number.indexOf("-") == 0)
        {
            negative = true ;
            number = number.replace("-",""); 
        }

        var str = number.toString();
        str = str.replace(".", ",");

        // number before decimal point
        var intbeforedecimaln = str.length - (str.length - str.indexOf(","));

        // number of delimiters
        var intKTrenner = Math.floor((intbeforedecimaln - 1) / 3);

        // Leading digits before the first dot
        var intZiffern = (intbeforedecimaln % 3 == 0) ? 3 : (intbeforedecimaln % 3);

        // Provided digits before the first thousand separator with point
        strNew = str.substring(0, intZiffern);

        // Auxiliary string without the previously treated digits
        strHelp = str.substr(intZiffern, (str.length - intZiffern));

        // Through thousands of remaining ...
        for(var i=0; i<intKTrenner; i++)
        {
            // attach 3 digits of the nearest thousand group point to String
            strNew += "." + strHelp.substring(0, 3);

            // Post new auxiliary string without the 3 digits being treated
            strHelp = strHelp.substr(intZiffern, (strHelp.length - intZiffern));
        }

        // attach a decimal
        var szdecimal = str.substring(intbeforedecimaln, str.length);
        if (szdecimal.length < 3 )
        {
            strNew += str.substring(intbeforedecimaln, str.length) + '0';
        }
        else
        {
            strNew += str.substring(intbeforedecimaln, str.length);
        }
        var number = strNew;

        if (negative)
        {
            number = "- " + number ;
        }

        return number;
    }
like image 761
user3652830 Avatar asked Apr 15 '26 06:04

user3652830


1 Answers

JavaScript's Math functions have a toLocaleString method. Why don't you just use this?

var n = (1223578.00).toLocaleString();
-> "1,223,578.00"

The locale you wish to use can be passed in as a parameter, for instance:

var n = (1223578.00).toLocaleString('de-DE');
-> "1.223.578,00"
like image 185
James Donnelly Avatar answered Apr 16 '26 19:04

James Donnelly