X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep704.php;h=3926defa4522ddced2d8d585033b79ac5dcec8b6;hb=508b54ee5cef13ac64f1532dfedfb7b242aa9077;hp=b6b12c38cf9204a65d29038435abb3eb5315375a;hpb=a64af461ae71473ef0624b32ae3d7e20017f2128;p=fa-stable.git diff --git a/reporting/rep704.php b/reporting/rep704.php index b6b12c38..3926defa 100644 --- a/reporting/rep704.php +++ b/reporting/rep704.php @@ -157,7 +157,16 @@ function print_GL_transactions() $rep->TextCol(4, 5, get_dimension_string($myrow['dimension_id'])); if ($dim > 1) $rep->TextCol(5, 6, get_dimension_string($myrow['dimension2_id'])); - $rep->TextCol(6, 7, payment_person_name($myrow["person_type_id"],$myrow["person_id"], false)); + $txt = payment_person_name($myrow["person_type_id"],$myrow["person_id"], false); + $memo = $myrow['memo_']; + if ($txt != "") + { + if ($memo != "") + $txt = $txt."/".$memo; + } + else + $txt = $memo; + $rep->TextCol(6, 7, $txt, -2); if ($myrow['amount'] > 0.0) $rep->AmountCol(7, 8, abs($myrow['amount']), $dec); else