
Originally Posted by
adam5532
But, in Quickbooks, don't you ultimately do all your accounting in USD? Or, do you have multi-currency set up? I don't think there is a way to import the iif file using anything but the default currency.
Adam
Amounts should simply be multiplied (and rounded) by the 'currency_value' in the 'orders' table as it is done in Zen Cart.
As an example, would changing something like this
PHP Code:
$prod['products_price']
to this work?
PHP Code:
round($prod['products_price']*$order['currency_value'],2)
I'm not sure if the $order variable used in QBI already has all info from the 'orders' table(including 'currency_value'), please let me know.
Thanks.
Bookmarks