Removed obsolete stock_move.discount_percent field
[fa-stable.git] / reporting / rep108.php
index 1a122c0435df2359fbdaf62297d78d7ba5388a70..84a80ca18279d32172ecd5e6cafa3c1a3ef0affd 100644 (file)
@@ -95,6 +95,9 @@ function print_statements()
 
        while ($myrow=db_fetch($result))
        {
+               if ($currency != ALL_TEXT && $myrow['curr_code'] != $currency) {
+                       continue;
+               }       
                $date = date('Y-m-d');
 
                $myrow['order_'] = "";
@@ -113,13 +116,13 @@ function print_statements()
                }
 
                $contacts = get_customer_contacts($myrow['debtor_no'], 'invoice');
-               $rep->SetHeaderType('Header2');
                $rep->currency = $cur;
                $rep->Font();
                $rep->Info($params, $cols, null, $aligns);
 
                //= get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no']);
                $rep->SetCommonData($myrow, null, null, $baccount, ST_STATEMENT, $contacts);
+               $rep->SetHeaderType('Header2');
                $rep->NewPage();
                $rep->NewLine();
                $doctype = ST_STATEMENT;
@@ -174,4 +177,3 @@ function print_statements()
                $rep->End();
 }
 
-?>