X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep113.php;h=cbc99d1fb559a07605ad4e4eb03fee17c33304a4;hb=b14f304532b7d124e79ee2a03d60a0850c8a417d;hp=b1f931909a37759368c192a35bdfc3bd1db341ea;hpb=a9d55e1c13cbd6a6305b9322ec8621a06516f9f3;p=fa-stable.git diff --git a/reporting/rep113.php b/reporting/rep113.php index b1f93190..cbc99d1f 100644 --- a/reporting/rep113.php +++ b/reporting/rep113.php @@ -134,11 +134,10 @@ function print_credits() if ($memo != "") { $rep->NewLine(); - $rep->TextColLines(1, 5, $memo, -2); + $rep->TextColLines(1, 3, $memo, -2); } $DisplaySubTot = number_format2($SubTotal,$dec); - $DisplayFreight = number_format2($sign*$myrow["ov_freight"],$dec); $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight); $doctype = ST_CUSTCREDIT; @@ -146,9 +145,13 @@ function print_credits() $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_CUSTCREDIT, $i); $first = true; while ($tax_item = db_fetch($tax_items))