X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep209.php;h=e5188bc6e812a28d9cd714259855a0534a82bc15;hb=0b63d898491b6577a5a5bf90e771dca0dcbbcf1f;hp=1340c61b0623b7ed24ada8a6ec2817604a9fd4ca;hpb=0489317205141deaecefe3a7243d11a3e38a51d0;p=fa-stable.git diff --git a/reporting/rep209.php b/reporting/rep209.php index 1340c61b..e5188bc6 100644 --- a/reporting/rep209.php +++ b/reporting/rep209.php @@ -69,11 +69,9 @@ function print_po() $comments = $_POST['PARAM_4']; $orientation = $_POST['PARAM_5']; + if (!$from || !$to) return; + $orientation = ($orientation ? 'L' : 'P'); - if ($from == null) - $from = 0; - if ($to == null) - $to = 0; $dec = user_price_dec(); $cols = array(4, 60, 225, 300, 340, 385, 450, 515); @@ -88,7 +86,7 @@ function print_po() if ($email == 0) $rep = new FrontReport(_('PURCHASE ORDER'), "PurchaseOrderBulk", user_pagesize(), 9, $orientation); if ($orientation == 'L') - $rep->recalculate_cols($cols); + recalculate_cols($cols); for ($i = $from; $i <= $to; $i++) { @@ -97,12 +95,14 @@ function print_po() $params['bankaccount'] = $baccount['id']; if ($email == 1) - $rep = new FrontReport("", "", user_pagesize(), $orientation); + { + $rep = new FrontReport("", "", user_pagesize(), 9, $orientation); + $rep->title = _('PURCHASE ORDER'); + $rep->filename = "PurchaseOrder" . $i . ".pdf"; + } $rep->SetHeaderType('Header2'); $rep->currency = $cur; $rep->Font(); - $rep->title = _('PURCHASE ORDER'); - $rep->filename = "PurchaseOrder" . $i . ".pdf"; $rep->Info($params, $cols, null, $aligns); $contacts = get_supplier_contacts($myrow['supplier_id'], 'order');