X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep102.php;fp=reporting%2Frep102.php;h=5940cc5102ef4f522c4e879e2f6d4d6c7a96023c;hb=0489317205141deaecefe3a7243d11a3e38a51d0;hp=f4ec4a88ea4909e548d80329a1de208537143eae;hpb=c75b19a492e4b9ad53c9c0a47b87ad0abb687921;p=fa-stable.git diff --git a/reporting/rep102.php b/reporting/rep102.php index f4ec4a88..5940cc51 100644 --- a/reporting/rep102.php +++ b/reporting/rep102.php @@ -79,11 +79,13 @@ function print_aged_customer_analysis() $no_zeros = $_POST['PARAM_5']; $graphics = $_POST['PARAM_6']; $comments = $_POST['PARAM_7']; - $destination = $_POST['PARAM_8']; + $orientation = $_POST['PARAM_8']; + $destination = $_POST['PARAM_9']; 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 ($graphics) { include_once($path_to_root . "/reporting/includes/class.graphic.inc"); @@ -135,7 +137,9 @@ function print_aged_customer_analysis() if ($convert) $headers[2] = _('Currency'); - $rep = new FrontReport(_('Aged Customer Analysis'), "AgedCustomerAnalysis", user_pagesize()); + $rep = new FrontReport(_('Aged Customer Analysis'), "AgedCustomerAnalysis", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + $rep->recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns);