X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep113.php;h=940b9e145260b1ef13010ca9c5d9d5fabff0d22e;hb=6a4d8e6c1e92ff1b8fc5abb3fae76fb1c1968550;hp=8dfb92b139559621b8c88a309319ee8b213ad381;hpb=52ac949d4511c7cc985913d32de440c1b33fbcf6;p=fa-stable.git diff --git a/reporting/rep113.php b/reporting/rep113.php index 8dfb92b1..940b9e14 100644 --- a/reporting/rep113.php +++ b/reporting/rep113.php @@ -44,9 +44,9 @@ function print_credits() $comments = $_POST['PARAM_5']; $orientation = $_POST['PARAM_6']; - $orientation = ($orientation ? 'L' : 'P'); if (!$from || !$to) return; + $orientation = ($orientation ? 'L' : 'P'); $dec = user_price_dec(); $fno = explode("-", $from); @@ -66,7 +66,7 @@ function print_credits() if ($email == 0) $rep = new FrontReport(_('CREDIT NOTE'), "InvoiceBulk", user_pagesize(), 9, $orientation); if ($orientation == 'L') - $rep->recalculate_cols($cols); + recalculate_cols($cols); for ($i = $from; $i <= $to; $i++) { @@ -81,12 +81,14 @@ function print_credits() $branch['disable_branch'] = $paylink; // helper $sales_order = null; if ($email == 1) + { $rep = new FrontReport("", "", user_pagesize(), 9, $orientation); + $rep->title = _('CREDIT NOTE'); + $rep->filename = "CreditNote" . $myrow['reference'] . ".pdf"; + } $rep->SetHeaderType('Header2'); $rep->currency = $cur; $rep->Font(); - $rep->title = _('CREDIT NOTE'); - $rep->filename = "CreditNote" . $myrow['reference'] . ".pdf"; $rep->Info($params, $cols, null, $aligns); $contacts = get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no'], false);