X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep106.php;h=00e4046109de5d3633dfc102ddcc1c3a70ba96b7;hb=412b79dc32855f813d03a8a6dd9debd45bb308f5;hp=ae3ae54b45e956c4e66c69136d0bb14b6f291488;hpb=b76195bf7054d3dcdc215414f9f63887b0ae7a6b;p=fa-stable.git diff --git a/reporting/rep106.php b/reporting/rep106.php index ae3ae54b..00e40461 100644 --- a/reporting/rep106.php +++ b/reporting/rep106.php @@ -55,13 +55,13 @@ function print_salesman_list() $from = $_POST['PARAM_0']; $to = $_POST['PARAM_1']; - $detailed = $_POST['PARAM_2']; + $summary = $_POST['PARAM_2']; $comments = $_POST['PARAM_3']; - if ($detailed == 0) - $det = _("No"); + if ($summary == 0) + $sum = _("No"); else - $det = _("Yes"); + $sum = _("Yes"); $dec = user_qty_dec(); @@ -77,7 +77,7 @@ function print_salesman_list() $params = array( 0 => $comments, 1 => array( 'text' => _('Period'), 'from' => $from, 'to' => $to), - 2 => array( 'text' => _('Detailed'),'from' => $det,'to' => '')); + 2 => array( 'text' => _('Summary Only'),'from' => $sum,'to' => '')); $cols2 = $cols; $aligns2 = $aligns; @@ -111,7 +111,7 @@ function print_salesman_list() $rep->TextCol(6, 7, number_format2($subprov, $dec)); $rep->Line($rep->row - 4); $rep->NewLine(2); - $rep->Line($rep->row); + //$rep->Line($rep->row); } $rep->TextCol(0, 2, $myrow['salesman_code']." ".$myrow['salesman_name']); $rep->TextCol(2, 3, $myrow['salesman_phone']); @@ -133,7 +133,7 @@ function print_salesman_list() $prov = $myrow['provision2'] * $amt / 100; else $prov = $myrow['provision'] * $amt / 100; - if ($detailed) + if (!$summary) { $rep->TextCol(0, 1, $myrow['trans_no']); $rep->TextCol(1, 2, $myrow['DebtorName']);