From: Joe Hunt Date: Wed, 13 Feb 2019 14:48:50 +0000 (+0100) Subject: Customer balance Report rep101.php has one extra parameter. Fixed @kvvaradha. X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=27361234b9405d19fe1a12fcf4048f29335125fb Customer balance Report rep101.php has one extra parameter. Fixed @kvvaradha. --- diff --git a/reporting/rep101.php b/reporting/rep101.php index b9c3ad08..dc81dd5a 100644 --- a/reporting/rep101.php +++ b/reporting/rep101.php @@ -168,7 +168,7 @@ function print_customer_balances() $accumulate = 0; $rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1; - $bal = get_open_balance($myrow['debtor_no'], $from, $convert); + $bal = get_open_balance($myrow['debtor_no'], $from); $init[0] = $init[1] = 0.0; $init[0] = round2(abs($bal['charges']*$rate), $dec); $init[1] = round2(Abs($bal['credits']*$rate), $dec);