php 8.1 deprecated null parameters. Missing file.
authorJoe <joe.hunt.consulting@gmail.com>
Sat, 4 Jun 2022 22:36:49 +0000 (00:36 +0200)
committerJoe <joe.hunt.consulting@gmail.com>
Sat, 4 Jun 2022 22:36:49 +0000 (00:36 +0200)
reporting/rep201.php

index 8fddfa9568ccc662846d90e717c8072c4be49e0c..3b7ee708c7dacdad817dae3be7d6c43669eacedf 100644 (file)
@@ -150,10 +150,6 @@ function print_supplier_balances()
                $rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1;
                $bal = get_open_balance($myrow['supplier_id'], $from);
                $init = array();
-               //$bal['charges'] = $bal != false ? $bal['charges'] : 0;
-               //$bal['credits'] = $bal != false ? $bal['credits'] : 0;
-               //$bal['Allocated'] = $bal != false ? $bal['Allocated'] : 0;
-               //$bal['OutStanding'] = $bal != false ? $bal['OutStanding'] : 0;
                $init[0] = round2(($bal != false ? abs($bal['charges']) : 0)*$rate, $dec);
                $init[1] = round2(($bal != false ? abs($bal['credits']) : 0)*$rate, $dec);
                $init[2] = round2(($bal != false ? $bal['Allocated'] : 0)*$rate, $dec);