X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep601.php;h=893c8d9d29daae54f64af6ab9c263d1c469d1382;hb=3141d7755efbca4d2eb7babc1d31629295451885;hp=b5ed420a32b14a524cb69e8b3c2bd6e8d4540aac;hpb=902f1015d874c33bd7946b17de2ad80b4f2144b6;p=fa-stable.git diff --git a/reporting/rep601.php b/reporting/rep601.php index b5ed420a..893c8d9d 100644 --- a/reporting/rep601.php +++ b/reporting/rep601.php @@ -54,7 +54,7 @@ function get_bank_transactions($from, $to, $account) function print_bank_transactions() { - global $path_to_root; + global $path_to_root, $systypes_array; $acc = $_POST['PARAM_0']; $from = $_POST['PARAM_1']; @@ -110,11 +110,11 @@ function print_bank_transactions() { $total += $myrow['amount']; - $rep->TextCol(0, 1, systypes::name($myrow["type"])); + $rep->TextCol(0, 1, $systypes_array[$myrow["type"]]); $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, payment_person_types::person_name($myrow["person_type_id"],$myrow["person_id"], 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); else