Searchable customer/supplier selectors in reports options (if set in company prefs).
[fa-stable.git] / reporting / rep101.php
index dc027b5ad54e394e48769d76aab17ac07ffe29ea..3f1ece787898c3784891b58ce565764c19c7afbe 100644 (file)
@@ -108,7 +108,7 @@ function print_customer_balances()
        else
                include_once($path_to_root . "/reporting/includes/pdf_report.inc");
 
-       if ($fromcust == ALL_NUMERIC)
+       if ($fromcust == ALL_TEXT)
                $cust = _('All');
        else
                $cust = get_customer_name($fromcust);
@@ -146,7 +146,7 @@ function print_customer_balances()
        $grandtotal = array(0,0,0,0);
 
        $sql = "SELECT debtor_no, name, curr_code FROM ".TB_PREF."debtors_master ";
-       if ($fromcust != ALL_NUMERIC)
+       if ($fromcust != ALL_TEXT)
                $sql .= "WHERE debtor_no=".db_escape($fromcust);
        $sql .= " ORDER BY name";
        $result = db_query($sql, "The customers could not be retrieved");