Credit note can be posted without customer selected when search customer List is...
[fa-stable.git] / reporting / rep113.php
index b1f931909a37759368c192a35bdfc3bd1db341ea..cbc99d1fb559a07605ad4e4eb03fee17c33304a4 100644 (file)
@@ -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))