Fixed typo in location variable.
[fa-stable.git] / reporting / rep601.php
index 7e443fb29b0cebacee938e6054a06ef1fbd0aac9..1cedff0df8f07ef669516ba0d638e2a13f4d7c9e 100644 (file)
@@ -84,7 +84,7 @@ function print_bank_transactions()
 
        $rep->Font();
        $rep->Info($params, $cols, $headers, $aligns);
-       $rep->Header();
+       $rep->NewPage();
 
 
        $prev_balance = get_bank_balance_to($from, $account["id"]);
@@ -104,11 +104,11 @@ function print_bank_transactions()
                $rep->Font();
                $total = $prev_balance;
                $rep->NewLine(2);
+               $total_debit = $total_credit = 0;
                if ($rows > 0)
                {
                        // Keep a running total as we loop through
                        // the transactions.
-                       $total_debit = $total_credit = 0;                       
                        
                        while ($myrow=db_fetch($trans))
                        {
@@ -118,7 +118,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,     payment_person_name($myrow["person_type_id"],$myrow["person_id"], false));
+                               $rep->TextCol(4, 5,     get_counterparty_name($myrow["type"], $myrow["trans_no"], false));
                                if ($myrow['amount'] > 0.0)
                                {
                                        $rep->AmountCol(5, 6, abs($myrow['amount']), $dec);
@@ -134,7 +134,7 @@ function print_bank_transactions()
                                if ($rep->row < $rep->bottomMargin + $rep->lineHeight)
                                {
                                        $rep->Line($rep->row - 2);
-                                       $rep->Header();
+                                       $rep->NewPage();
                                }
                        }
                        $rep->NewLine();