Topic: Customer balance Report rep101.php has one extra parameter

From the Customer balances report, we have a function get_open_balance

While calling this, we have 3 parameters, but in definition, we have just 2 parameters.

 function get_open_balance($debtorno, $to) { 

And

 $bal = get_open_balance($myrow['debtor_no'], $from, $convert);

Here the $convert   is unnecessary to pass it.

So just fix it like this.

 $bal = get_open_balance($myrow['debtor_no'], $from);
Subscription service based on FA
HRM CRM POS batch Themes

Re: Customer balance Report rep101.php has one extra parameter

Oops! Thanks @kvvaradha for detecting this. Well it did no harm and the conversion is done immediately after the open balance call.
But it should not be here smile

Committed to stable repo.

/Joe