X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep704.php;h=08391fbd07b51c491c9d0b1495c0340cf50f5c77;hb=a2e0638b8caab0356ee8d39b5761745a5991fc2d;hp=ff39ccd16cd99bfac58f8d27ceb2660401ff6259;hpb=b37623cf1de2cfce6825744557d76475f002321f;p=fa-stable.git diff --git a/reporting/rep704.php b/reporting/rep704.php index ff39ccd1..08391fbd 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