X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep203.php;h=c1784e51cf6af19d0a05ab0aa3773b3670b45614;hb=40da959b32eb27fcb0422207a284eed13cc27d7e;hp=7ca090d9d043fef8cfa88aad3550104cdb889b38;hpb=bd9f5ffaa36f9bbd54498bc9ae264fe53b0a86ba;p=fa-stable.git diff --git a/reporting/rep203.php b/reporting/rep203.php index 7ca090d9..c1784e51 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);