X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep110.php;h=1c9cf7436037078fb9ed26a20a9ac4ecea95ee50;hb=884c36eec7dbaae89e1f5532cc2c2f8033b010fd;hp=f5b35bc065dd6e970d1c112c4e7d25be2c6539e2;hpb=99d5647a5dd083073d39603792fd78c49bfb5ccb;p=fa-stable.git diff --git a/reporting/rep110.php b/reporting/rep110.php index f5b35bc0..1c9cf743 100644 --- a/reporting/rep110.php +++ b/reporting/rep110.php @@ -34,7 +34,7 @@ print_deliveries(); function print_deliveries() { - global $path_to_root, $packing_slip, $alternative_tax_include_on_docs; + global $path_to_root, $packing_slip, $alternative_tax_include_on_docs, $suppress_tax_rates; include_once($path_to_root . "/reporting/includes/pdf_report.inc"); @@ -101,7 +101,8 @@ function print_deliveries() } else $rep->title = _('DELIVERY NOTE'); - $rep->SetCommonData($myrow, $branch, $sales_order, '', ST_CUSTDELIVERY); + $contacts = get_branch_contacts($branch['branch_code'], 'delivery', $branch['debtor_no']); + $rep->SetCommonData($myrow, $branch, $sales_order, '', ST_CUSTDELIVERY, $contacts); $rep->NewPage(); $result = get_customer_trans_details(ST_CUSTDELIVERY, $i); @@ -168,7 +169,13 @@ function print_deliveries() while ($tax_item = db_fetch($tax_items)) { $DisplayTax = number_format2($tax_item['amount'], $dec); - if ($tax_item['included_in_price']) + + if (isset($suppress_tax_rates) && $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 (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1) { @@ -178,19 +185,16 @@ function print_deliveries() $rep->TextCol(6, 7, number_format2($tax_item['net_amount'], $dec), -2); $rep->NewLine(); } - $rep->TextCol(3, 6, $tax_item['tax_type_name'] . " (" . - $tax_item['rate'] . "%)", -2); + $rep->TextCol(3, 6, $tax_type_name, -2); $rep->TextCol(6, 7, $DisplayTax, -2); $first = false; } else - $rep->TextCol(3, 7, $doc_Included . " " . $tax_item['tax_type_name'] . - " (" . $tax_item['rate'] . "%) " . $doc_Amount . ": " . $DisplayTax, -2); + $rep->TextCol(3, 7, $doc_Included . " " . $tax_type_name . $doc_Amount . ": " . $DisplayTax, -2); } else { - $rep->TextCol(3, 6, $tax_item['tax_type_name'] . " (" . - $tax_item['rate'] . "%)", -2); + $rep->TextCol(3, 6, $tax_type_name, -2); $rep->TextCol(6, 7, $DisplayTax, -2); } $rep->NewLine();