X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep601.php;h=2566216c5b981fe229ae65ffe3b6d57d6f4f113f;hb=f3a1386748cd9250419b5ad03b95c56af2bb5f92;hp=079e3c1ff818fc6ce11d7f8c39105707809bdf2d;hpb=71e2a022f298a96a2406de1fc8397270257f9a1f;p=fa-stable.git diff --git a/reporting/rep601.php b/reporting/rep601.php index 079e3c1f..2566216c 100644 --- a/reporting/rep601.php +++ b/reporting/rep601.php @@ -47,6 +47,7 @@ function get_bank_transactions($from, $to, $account) WHERE bank_act = '$account' AND trans_date >= '$from' AND trans_date <= '$to' + AND amount <> 0 ORDER BY trans_date, id"; return db_query($sql,"The transactions for '$account' could not be retrieved"); @@ -132,7 +133,7 @@ function print_bank_transactions() $rep->TextCol(1, 2, $myrow['trans_no']); $rep->TextCol(2, 3, $myrow['ref']); $rep->DateCol(3, 4, $myrow["trans_date"], true); - $rep->TextCol(4, 5, get_counterparty_name($myrow["type"], $myrow["trans_no"], false)); + $rep->TextCol(4, 5, payment_person_name($myrow["person_type_id"],$myrow["person_id"], false)); if ($myrow['amount'] > 0.0) { $rep->AmountCol(5, 6, abs($myrow['amount']), $dec);