X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep203.php;h=9b1ad3b468fe0ca2725695ca261aba7c63a17e47;hb=5b8f4c4b4aa8cf996bc071f116bfce1273200fa2;hp=7ca090d9d043fef8cfa88aad3550104cdb889b38;hpb=9b1b5c83a37376d2076334952db1d1f739a26d1c;p=fa-stable.git diff --git a/reporting/rep203.php b/reporting/rep203.php index 7ca090d9..9b1ad3b4 100644 --- a/reporting/rep203.php +++ b/reporting/rep203.php @@ -62,12 +62,14 @@ function print_payment_report() $currency = $_POST['PARAM_2']; $no_zeros = $_POST['PARAM_3']; $comments = $_POST['PARAM_4']; - $destination = $_POST['PARAM_5']; + $orientation = $_POST['PARAM_5']; + $destination = $_POST['PARAM_6']; if ($destination) include_once($path_to_root . "/reporting/includes/excel_report.inc"); else include_once($path_to_root . "/reporting/includes/pdf_report.inc"); + $orientation = ($orientation ? 'L' : 'P'); if ($fromsupp == ALL_TEXT) $from = _('All'); else @@ -99,7 +101,9 @@ function print_payment_report() 3 => array( 'text' => _('Currency'),'from' => $currency, 'to' => ''), 4 => array('text' => _('Suppress Zeros'), 'from' => $nozeros, 'to' => '')); - $rep = new FrontReport(_('Payment Report'), "PaymentReport", user_pagesize()); + $rep = new FrontReport(_('Payment Report'), "PaymentReport", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -183,4 +187,3 @@ function print_payment_report() $rep->End(); } -?>