X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep113.php;h=522b62f82e74bfc5b10710b2e57b23b171cd83b2;hb=5b8f4c4b4aa8cf996bc071f116bfce1273200fa2;hp=7a612243ff6a2b313f6b92b17e6b94e4a18e0ad9;hpb=6af220a67674c827a1970fe601a4c04e8d07cded;p=fa-stable.git diff --git a/reporting/rep113.php b/reporting/rep113.php index 7a612243..522b62f8 100644 --- a/reporting/rep113.php +++ b/reporting/rep113.php @@ -32,7 +32,7 @@ print_credits(); function print_credits() { - global $path_to_root, $alternative_tax_include_on_docs, $suppress_tax_rates; + global $path_to_root, $SysPrefs; include_once($path_to_root . "/reporting/includes/pdf_report.inc"); @@ -42,9 +42,11 @@ function print_credits() $email = $_POST['PARAM_3']; $paylink = $_POST['PARAM_4']; $comments = $_POST['PARAM_5']; + $orientation = $_POST['PARAM_6']; if (!$from || !$to) return; + $orientation = ($orientation ? 'L' : 'P'); $dec = user_price_dec(); $fno = explode("-", $from); @@ -62,13 +64,9 @@ function print_credits() $cur = get_company_Pref('curr_default'); if ($email == 0) - { - $rep = new FrontReport(_('CREDIT NOTE'), "InvoiceBulk", user_pagesize()); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); - $rep->Info($params, $cols, null, $aligns); - } + $rep = new FrontReport(_('CREDIT NOTE'), "InvoiceBulk", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); for ($i = $from; $i <= $to; $i++) { @@ -84,17 +82,16 @@ function print_credits() $sales_order = null; if ($email == 1) { - $rep = new FrontReport("", "", user_pagesize()); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); + $rep = new FrontReport("", "", user_pagesize(), 9, $orientation); $rep->title = _('CREDIT NOTE'); $rep->filename = "CreditNote" . $myrow['reference'] . ".pdf"; - $rep->Info($params, $cols, null, $aligns); } - else - $rep->title = _('CREDIT NOTE'); - $contacts = get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no']); + $rep->SetHeaderType('Header2'); + $rep->currency = $cur; + $rep->Font(); + $rep->Info($params, $cols, null, $aligns); + + $contacts = get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no'], true); $rep->SetCommonData($myrow, $branch, $sales_order, $baccount, ST_CUSTCREDIT, $contacts); $rep->NewPage(); @@ -158,14 +155,14 @@ function print_credits() continue; $DisplayTax = number_format2($sign*$tax_item['amount'], $dec); - if (isset($suppress_tax_rates) && $suppress_tax_rates == 1) + if ($SysPrefs->suppress_tax_rates() == 1) $tax_type_name = $tax_item['tax_type_name']; else $tax_type_name = $tax_item['tax_type_name']." (".$tax_item['rate']."%) "; - if ($tax_item['included_in_price']) + if ($myrow['tax_included']) { - if (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1) + if ($SysPrefs->alternative_tax_include_on_docs() == 1) { if ($first) { @@ -210,4 +207,3 @@ function print_credits() $rep->End(); } -?> \ No newline at end of file