This is done by setting a global variabel $alternative_tax_include_on_docs = 1.
$ -> Affected files
15-Apr-2010 Joe Hunt
+! Added an alternative way of presenting tax included on invoices.
+ This is done by setting a global variabel $alternative_tax_include_on_docs = 1.
+$ config.default.php
+ /includes/ui/ui_view.inc
+ /reporting/rep107.php
+ /reporting/rep110.php
+
! Added a date column and combined the # and View column in 'View / Print Transactions.
! Changed Voiding Transaction to also include a pager.
$ /admin/view_print_transaction.php
/* print_invoice_no. 0 = print reference number, 1 = print invoice number */
$print_invoice_no = 0;
+ /* 1 = print Subtotal tax excluded, tax and Total tax included */
+ $alternative_tax_include_on_docs = 0;
+
$dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD");
$dateseps = array("/", ".", "-", " ");
$thoseps = array(",", ".", " ");
function display_customer_trans_tax_details($tax_items, $columns)
{
+ global $alternative_tax_include_on_docs;
+ $first = true;
while ($tax_item = db_fetch($tax_items))
{
$tax = number_format2($tax_item['amount'],user_price_dec());
if ($tax_item['included_in_price'])
- label_row(_("Included") . " " . $tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%) " .
- _("Amount") . ": $tax", "", "colspan=$columns align=right", "align=right");
+ {
+ if (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1)
+ {
+ if ($first)
+ label_row(_("Total Tax Excluded"), number_format2($tax_item['net_amount'], user_price_dec()),
+ "colspan=$columns align=right", "align=right");
+ label_row($tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%)",
+ $tax, "colspan=$columns align=right", "align=right");
+ $first = false;
+ }
+ else
+ label_row(_("Included") . " " . $tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%) " .
+ _("Amount") . ": $tax", "", "colspan=$columns align=right", "align=right");
+ }
else
label_row($tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%)",
$tax, "colspan=$columns align=right", "align=right");
function print_invoices()
{
- global $path_to_root;
+ global $path_to_root, $alternative_tax_include_on_docs;
include_once($path_to_root . "/reporting/includes/pdf_report.inc");
$rep->TextCol(6, 7, $DisplayFreight, -2);
$rep->NewLine();
$tax_items = get_trans_tax_details($j, $i);
+ $first = true;
while ($tax_item = db_fetch($tax_items))
{
$DisplayTax = number_format2($sign*$tax_item['amount'], $dec);
if ($tax_item['included_in_price'])
{
- $rep->TextCol(3, 7, $doc_Included . " " . $tax_item['tax_type_name'] .
- " (" . $tax_item['rate'] . "%) " . $doc_Amount . ": " . $DisplayTax, -2);
+ if (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1)
+ {
+ if ($first)
+ {
+ $rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
+ $rep->TextCol(6, 7, number_format2($sign*$tax_item['net_amount'], $dec), -2);
+ $rep->NewLine();
+ }
+ $rep->TextCol(3, 6, $tax_item['tax_type_name'] . " (" .
+ $tax_item['rate'] . "%)", -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);
}
else
{
function print_deliveries()
{
- global $path_to_root, $packing_slip;
+ global $path_to_root, $packing_slip, $alternative_tax_include_on_docs;
include_once($path_to_root . "/reporting/includes/pdf_report.inc");
$rep->TextCol(6, 7, $DisplayFreight, -2);
$rep->NewLine();
$tax_items = get_trans_tax_details(ST_CUSTDELIVERY, $i);
+ $first = true;
while ($tax_item = db_fetch($tax_items))
{
$DisplayTax = number_format2($tax_item['amount'], $dec);
if ($tax_item['included_in_price'])
{
- $rep->TextCol(3, 7, $doc_Included . " " . $tax_item['tax_type_name'] .
- " (" . $tax_item['rate'] . "%) " . $doc_Amount . ": " . $DisplayTax, -2);
+ if (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1)
+ {
+ if ($first)
+ {
+ $rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
+ $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(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);
}
else
{