X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep305.php;h=010fa364df86eafee18cc641e7d07d7181c9adbd;hb=0489317205141deaecefe3a7243d11a3e38a51d0;hp=1fa6e8cdf934fa3be5634f4e51e3873b2dad9813;hpb=c75b19a492e4b9ad53c9c0a47b87ad0abb687921;p=fa-stable.git diff --git a/reporting/rep305.php b/reporting/rep305.php index 1fa6e8cd..010fa364 100644 --- a/reporting/rep305.php +++ b/reporting/rep305.php @@ -86,12 +86,14 @@ function print_grn_valuation() $from = $_POST['PARAM_0']; $to = $_POST['PARAM_1']; $comments = $_POST['PARAM_2']; - $destination = $_POST['PARAM_3']; + $orientation = $_POST['PARAM_3']; + $destination = $_POST['PARAM_4']; 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'); $dec = user_price_dec(); $cols = array(0, 75, 225, 260, 295, 330, 370, 410, 455, 515); @@ -102,7 +104,9 @@ function print_grn_valuation() $params = array( 0 => $comments, 1 => array('text' => _('Period'),'from' => $from, 'to' => $to)); - $rep = new FrontReport(_('GRN Valuation Report'), "GRNValuationReport", user_pagesize()); + $rep = new FrontReport(_('GRN Valuation Report'), "GRNValuationReport", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + $rep->recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns);