Quote Originally Posted by Chargin View Post
I posted here a couple of pages ago about a GST problem Im having with easy populate.
Basically I need the export to include more decimals, it gets cut off at 2, when adding 10% to that, we dont get back to the correct full retail price.

Heres the link to my full question, be great if someone could point me in the right direction.

http://www.zen-cart.com/showthread.p...80#post1161780
Chargin,

You should be able to fix this with a few quick edits (I'll add a configuration for this later on).

Open easypopulate_4_export.php

go to about line 417

Code:
		$row['v_products_price']  = round($row['v_products_price'] + ($price_with_tax * $row['v_products_price'] * $row_tax_multiplier / 100),2);
See the ".... 100),2); " ??? That's rounding to two decimal places. Change to the degree of accuracy that you need.

-chadd