X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep115.php;h=ee03bf8a8fa06dbea9ed905ae3392724ba8c369d;hb=efa47c3c14d52adf0566652ac1b02aa3ade9d94b;hp=74ef3c0a63bcaecf89c804b77286ffb578a0d1be;hpb=d7b2df429bf66654536ffafeb5a3d1e034653374;p=fa-stable.git diff --git a/reporting/rep115.php b/reporting/rep115.php index 74ef3c0a..ee03bf8a 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,13 +232,11 @@ function print_customer_balances() $grandtotal[$i] += $init[$i]; } - if ($no_zeros && $init[3] == 0) continue; - - if (db_num_rows($res) == 0) + if (db_num_rows($res) == 0 && !$no_zeros) { $rep->TextCol(0, 2, $myrow['name']); $rep->AmountCol(3, 4, $init[3], $dec); - $rep->AmountCol(8, 9, $init[3], $dec); + $rep->AmountCol(7, 8, $init[3], $dec); //$rep->Line($rep->row - 2); $rep->NewLine(1); continue; @@ -277,12 +277,12 @@ 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); - $rep->AmountCol(6, 7, $curr_cr, $dec); - $rep->AmountCol(8, 9, $total[3], $dec); + $rep->AmountCol(4, 5, $curr_db, $dec); + $rep->AmountCol(5, 6, $curr_cr, $dec); + $rep->AmountCol(7, 8, $total[3], $dec); //$rep->Line($rep->row - 2); $rep->NewLine(1); } @@ -294,9 +294,9 @@ function print_customer_balances() $grandtotal[3] = $grandtotal[0] - $grandtotal[1]; $rep->AmountCol(3, 4, $grandtotal[3] - $tot_cur_db + $tot_cur_cr, $dec); - $rep->AmountCol(5, 6, $tot_cur_db, $dec); - $rep->AmountCol(6, 7, $tot_cur_cr, $dec); - $rep->AmountCol(8, 9, $grandtotal[3], $dec); + $rep->AmountCol(4, 5, $tot_cur_db, $dec); + $rep->AmountCol(5, 6, $tot_cur_cr, $dec); + $rep->AmountCol(7, 8, $grandtotal[3], $dec); $rep->Line($rep->row - 6, 1); $rep->NewLine(); $rep->End();