X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep205.php;h=d2f500b3957d5f2f85fa4c599ba443dc5d35f7b7;hb=5ac9ea61baac0cf298b07317051da51e781645b7;hp=e7e6255dadb79ae3db3232aa94edda072b82b132;hpb=2081731b170dd82a2dfca9dfa52fdb3babaec5f2;p=fa-stable.git diff --git a/reporting/rep205.php b/reporting/rep205.php index e7e6255d..d2f500b3 100644 --- a/reporting/rep205.php +++ b/reporting/rep205.php @@ -39,8 +39,10 @@ function get_supplier_details_for_report() ".TB_PREF."suppliers.curr_code, ".TB_PREF."suppliers.dimension_id, ".TB_PREF."suppliers.dimension2_id, + ".TB_PREF."suppliers.notes, ".TB_PREF."suppliers.gst_no FROM ".TB_PREF."suppliers + WHERE inactive = 0 ORDER BY supp_name"; return db_query($sql,"No transactions were returned"); @@ -129,6 +131,7 @@ function print_supplier_details_listing() } if ($printsupplier) { + $newrow = 0; $rep->NewLine(); // Here starts the new report lines 2013-01-28 Joe Hunt $contacts = get_supplier_contacts($myrow['supplier_id']); @@ -168,6 +171,14 @@ function print_supplier_details_listing() { $dim = get_dimension($myrow['dimension2_id']); $rep->TextCol(1, 2, _('Dimension') . " 2: " . $dim['name']); + } + if ($myrow['notes'] != '') + { + $oldrow = $rep->row; + $rep->NewLine(); + $rep->TextColLines(1, 2, _("General Notes:")." ".$myrow['notes'], -2); + $newrow = $rep->row; + $rep->row = $oldrow; } if (isset($contacts[0])) $rep->TextCol(2, 3, _('Fax') . ": " . $contacts[0]['fax']); @@ -185,6 +196,8 @@ function print_supplier_details_listing() if (isset($adr2[$i])) $rep->TextCol(3, 4, $adr2[$i]); } + if ($newrow != 0 && $newrow < $rep->row) + $rep->row = $newrow; $rep->NewLine(); $rep->Line($rep->row + 8); $rep->NewLine(0, 3); @@ -193,4 +206,3 @@ function print_supplier_details_listing() $rep->End(); } -?> \ No newline at end of file