X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep105.php;h=b57536756935fe20ce004431c422b8fb190cc704;hb=ac86042c0f4d7f15e3422d3fefdd6b7f70672129;hp=6b391a63c3c4c512274f0d6ac5dc2ee31a072bef;hpb=c8f27f36721cfd5e02e62965f40ff3c3933dbd7d;p=fa-stable.git diff --git a/reporting/rep105.php b/reporting/rep105.php index 6b391a63..b5753675 100644 --- a/reporting/rep105.php +++ b/reporting/rep105.php @@ -79,11 +79,13 @@ function print_order_status_list() $location = $_POST['PARAM_3']; $backorder = $_POST['PARAM_4']; $comments = $_POST['PARAM_5']; - $destination = $_POST['PARAM_6']; + $orientation = $_POST['PARAM_6']; + $destination = $_POST['PARAM_7']; 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 ($category == ALL_NUMERIC) $category = 0; @@ -109,7 +111,7 @@ function print_order_status_list() $aligns = array('left', 'left', 'right', 'right', 'right', 'right', 'right'); - $headers = array(_('Code'), _('Description'), _('Ordered'), _('Invoiced'), + $headers = array(_('Code'), _('Description'), _('Ordered'), _('Delivered'), _('Outstanding'), ''); $params = array( 0 => $comments, @@ -118,25 +120,22 @@ function print_order_status_list() 3 => array( 'text' => _('Location'), 'from' => $loc, 'to' => ''), 4 => array( 'text' => _('Selection'),'from' => $back,'to' => '')); - $cols2 = $cols; $aligns2 = $aligns; - $rep = new FrontReport(_('Order Status Listing'), "OrderStatusListing", user_pagesize()); + $rep = new FrontReport(_('Order Status Listing'), "OrderStatusListing", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); + $cols2 = $cols; $rep->Font(); $rep->Info($params, $cols, $headers, $aligns, $cols2, $headers2, $aligns2); - $rep->Header(); + $rep->NewPage(); $orderno = 0; $result = GetSalesOrders($from, $to, $category, $location, $backorder); while ($myrow=db_fetch($result)) { - if ($rep->row < $rep->bottomMargin + (2 * $rep->lineHeight)) - { - $orderno = 0; - $rep->Header(); - } $rep->NewLine(0, 2, false, $orderno); if ($orderno != $myrow['order_no']) { @@ -168,11 +167,6 @@ function print_order_status_list() $rep->Font(); } $rep->NewLine(); - if ($rep->row < $rep->bottomMargin + (2 * $rep->lineHeight)) - { - $orderno = 0; - $rep->Header(); - } } $rep->Line($rep->row); $rep->End();