Customer/Supplier Balances Reports: fixed error in recalculation to home currency...
[fa-stable.git] / reporting / rep201.php
index d0b886bf20a3758a6db9cc0af394ea1a4d53dcef..6fc122ddb88353807a753806c344e9f088153483 100644 (file)
@@ -179,7 +179,7 @@ function print_supplier_balances()
                while ($trans=db_fetch($res))
                {
                        if ($no_zeros && floatcmp(abs($trans['TotalAmount']), $trans['Allocated']) == 0) continue;
-                       $rate = $convert ? get_exchange_rate_to_home_currency($myrow['curr_code'], Today()) : 1;
+                       $rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1;
 
                        $rep->NewLine(1, 2);
                        $rep->TextCol(0, 1, $systypes_array[$trans['type']]);