From 5a1af3cc83d7324192412f47122fff13d854303e Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sat, 22 Dec 2018 10:00:00 +0100 Subject: [PATCH] Rerun of rep115.php and rep206. Wrong $no_zeroes check and missing parameters in rep115.php. --- reporting/rep115.php | 13 ++++++------- reporting/rep206.php | 5 ++--- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/reporting/rep115.php b/reporting/rep115.php index 74ef3c0a..a391e5b6 100644 --- a/reporting/rep115.php +++ b/reporting/rep115.php @@ -1,6 +1,6 @@ $comments, 1 => array('text' => _('Period'), 'from' => $from, 'to' => $to), 2 => array('text' => _('Customer'), 'from' => $cust, 'to' => ''), - 3 => array('text' => _('Currency'), 'from' => $currency, 'to' => ''), - 4 => array('text' => _('Suppress Zeros'), 'from' => $nozeros, 'to' => '')); + 3 => array('text' => _('Sales Areas'), 'from' => $sarea, 'to' => ''), + 4 => array('text' => _('Sales Folk'), 'from' => $salesfolk, 'to' => ''), + 5 => array('text' => _('Currency'), 'from' => $currency, 'to' => ''), + 6 => array('text' => _('Suppress Zeros'), 'from' => $nozeros, 'to' => '')); $rep = new FrontReport(_('Customer Trial Balance'), "CustomerTB", user_pagesize(), 9, $orientation); if ($orientation == 'L') @@ -230,8 +231,6 @@ function print_customer_balances() $grandtotal[$i] += $init[$i]; } - if ($no_zeros && $init[3] == 0) continue; - if (db_num_rows($res) == 0) { $rep->TextCol(0, 2, $myrow['name']); @@ -277,7 +276,7 @@ function print_customer_balances() } $total[3] = $total[0] - $total[1]; } - + if ($no_zeros && $total[3] == 0.0 && $curr_db == 0.0 && $curr_cr == 0.0) continue; $rep->TextCol(0, 2, $myrow['name']); $rep->AmountCol(3, 4, $total[3] + $curr_cr - $curr_db, $dec); $rep->AmountCol(5, 6, $curr_db, $dec); diff --git a/reporting/rep206.php b/reporting/rep206.php index dc0fab32..248f1a3f 100644 --- a/reporting/rep206.php +++ b/reporting/rep206.php @@ -1,6 +1,6 @@ TextCol(0, 2, $myrow['name']); @@ -210,6 +208,7 @@ function print_supplier_balances() } $total[3] = $total[1] - $total[0]; } + if ($no_zeros && $total[3] == 0.0 && $curr_db == 0.0 && $curr_cr == 0.0) continue; $rep->TextCol(0, 2, $myrow['name']); $rep->AmountCol(3, 4, $total[3] + $curr_cr - $curr_db, $dec); $rep->AmountCol(5, 6, $curr_cr, $dec); -- 2.30.2