X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep201.php;h=79cd401f1dbeab815384eb73017412762447e841;hb=ced25a469db48fa4badfcc96e09e414193fe0377;hp=1c1ee43839ef40cc80b831805a6d3a0222a61af6;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/reporting/rep201.php b/reporting/rep201.php index 1c1ee438..79cd401f 100644 --- a/reporting/rep201.php +++ b/reporting/rep201.php @@ -96,7 +96,7 @@ function print_supplier_balances() else include_once($path_to_root . "/reporting/includes/pdf_report.inc"); - if ($fromsupp == ALL_NUMERIC) + if ($fromsupp == ALL_TEXT) $supp = _('All'); else $supp = get_supplier_name($fromsupp); @@ -136,7 +136,7 @@ function print_supplier_balances() $grandtotal = array(0,0,0,0); $sql = "SELECT supplier_id, supp_name AS name, curr_code FROM ".TB_PREF."suppliers"; - if ($fromsupp != ALL_NUMERIC) + if ($fromsupp != ALL_TEXT) $sql .= " WHERE supplier_id=".db_escape($fromsupp); $sql .= " ORDER BY supp_name"; $result = db_query($sql, "The customers could not be retrieved");