X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep710.php;h=d0cb82bfbfbd47e77f4f48e1faa58f8bba67e2de;hb=5a3cbfe6d2df1c8c32edcab8bf93e8a8432a15fc;hp=befed437404a9427be2555a011d8f8c1900e538f;hpb=f094b8ffe36fb0c2b27ebb4055052e66caf04055;p=fa-stable.git diff --git a/reporting/rep710.php b/reporting/rep710.php index befed437..d0cb82bf 100644 --- a/reporting/rep710.php +++ b/reporting/rep710.php @@ -62,12 +62,14 @@ function print_audit_trail() $systype = $_POST['PARAM_2']; $user = $_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'); $dec = user_price_dec(); $cols = array(0, 60, 120, 180, 240, 340, 400, 460, 520); @@ -84,11 +86,13 @@ function print_audit_trail() 2 => array('text' => _('Type'), 'from' => ($systype != -1 ? $systypes_array[$systype] : _('All')), 'to' => ''), 3 => array('text' => _('User'), 'from' => ($user != -1 ? $user_id : _('All')), 'to' => '')); - $rep = new FrontReport(_('Audit Trail'), "AuditTrail", user_pagesize()); + $rep = new FrontReport(_('Audit Trail'), "AuditTrail", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); - $rep->Header(); + $rep->NewPage(); $trans = getTransactions($from, $to, $systype, $user); @@ -116,4 +120,3 @@ function print_audit_trail() $rep->End(); } -?> \ No newline at end of file