How to remove .00 from ordersDelivery

FireFly

No avatar

2006-01-19 15:56

Hello
I just made necessary changes to :

\actions_admin\orders.php
\actions_client\orders.php
\core\other.php

everything works fine , except ordersDelivery page (index.php?p=ordersDelivery) ... when I select a Couriers the total cost will be change to .00

I figure out I have to change somethin in \js\fix.js , but I dont know

I really appreciate any help

Regards

FireFly

No avatar

2006-01-20 13:10

any help ?

Nick

No avatar

2006-01-20 13:23

Try adding this first in the fix function in the file \js\fix.js:

return ("" Math.round(f));



Se example snippet below


function fix){
                     return (
"" Math.round(f));
    
f    f.toString( );
    var 
re    = /\,/gi;
    
f    f.replacere"\." );
.
.
.


Nick

No avatar

2006-01-20 13:26

Whops. Example should look like this:
return (""+Math.round(f));

It will probably work with the following as well:
return Math.round(f);

FireFly

No avatar

2006-01-20 13:37

WOOW cool

thank you so much , u make my day

Back to top
about us | contact