Customer/Supplier Balances Reports: fixed error in recalculation to home currency...
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Sun, 13 Oct 2013 17:27:54 +0000 (19:27 +0200)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Sun, 13 Oct 2013 19:21:42 +0000 (21:21 +0200)
reporting/rep101.php
reporting/rep201.php

index df34fe35ef8794136ede0b92b554a04092683d6b..74b355d8dc81cfbe667126fb70ab4cf3fb614dc3 100644 (file)
@@ -149,7 +149,7 @@ function print_customer_balances()
                if (!$convert && $currency != $myrow['curr_code']) continue;
                
                $accumulate = 0;
-               $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;
                $bal = get_open_balance($myrow['debtor_no'], $from, $convert);
                $init[0] = $init[1] = 0.0;
                $init[0] = round2(abs($bal['charges']*$rate), $dec);
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']]);