X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep113.php;h=4f20bd92a6a72e82b6285c3b3356505d0d914aaf;hb=927ebef2443b6dda544056e33ec84b71d2bdb6c2;hp=2e8e1dc5484509dbc28aaa39803e19fc7230ada5;hpb=53d942f2a0d20cce5e9c409c6485867ce0869e4d;p=fa-stable.git diff --git a/reporting/rep113.php b/reporting/rep113.php index 2e8e1dc5..4f20bd92 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"); @@ -86,13 +86,13 @@ function print_credits() $rep->title = _('CREDIT NOTE'); $rep->filename = "CreditNote" . $myrow['reference'] . ".pdf"; } - $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->SetHeaderType('Header2'); $rep->NewPage(); $result = get_customer_trans_details(ST_CUSTCREDIT, $i); @@ -155,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 ($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) { @@ -207,4 +207,3 @@ function print_credits() $rep->End(); } -?> \ No newline at end of file