From 496318e80ddb0adf0706224140c492b9d3c418a4 Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 5 Jun 2022 00:36:49 +0200 Subject: [PATCH] php 8.1 deprecated null parameters. Missing file. --- reporting/rep201.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reporting/rep201.php b/reporting/rep201.php index 8fddfa95..3b7ee708 100644 --- a/reporting/rep201.php +++ b/reporting/rep201.php @@ -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); -- 2.30.2