X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=reporting%2Frep107.php;h=58b1509fd7eaa54065c88147318892b6770649ed;hb=805b766842402a275c6bd0526df5278af03138ed;hp=d3f74dd7999b3e826cc0443fa59196c95edd2b8c;hpb=fbfb1ee42fac43d2e149eaad52de19becfc10034;p=fa-stable.git diff --git a/reporting/rep107.php b/reporting/rep107.php index d3f74dd7..58b1509f 100644 --- a/reporting/rep107.php +++ b/reporting/rep107.php @@ -145,7 +145,6 @@ function print_invoices() } $DisplaySubTot = number_format2($SubTotal,$dec); - $DisplayFreight = number_format2($sign*$myrow["ov_freight"],$dec); $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight); $doctype = ST_SALESINVOICE; @@ -153,9 +152,13 @@ function print_invoices() $rep->TextCol(3, 6, _("Sub-total"), -2); $rep->TextCol(6, 7, $DisplaySubTot, -2); $rep->NewLine(); - $rep->TextCol(3, 6, _("Shipping"), -2); - $rep->TextCol(6, 7, $DisplayFreight, -2); - $rep->NewLine(); + if ($myrow['ov_freight'] != 0.0) + { + $DisplayFreight = number_format2($sign*$myrow["ov_freight"],$dec); + $rep->TextCol(3, 6, _("Shipping"), -2); + $rep->TextCol(6, 7, $DisplayFreight, -2); + $rep->NewLine(); + } $tax_items = get_trans_tax_details(ST_SALESINVOICE, $i); $first = true; while ($tax_item = db_fetch($tax_items))