X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep201.php;h=4004c8a219c335bb279198fb0ff014c5e721bd08;hb=0c794db98d716ec8823435d8423c98a12bebba66;hp=567d12f17825d8e049739d70c30732a87a5e7171;hpb=e1ad4f3f77cb20f692185b0b5e493820c5fb7f77;p=fa-stable.git diff --git a/reporting/rep201.php b/reporting/rep201.php index 567d12f1..4004c8a2 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); @@ -130,13 +130,13 @@ function print_supplier_balances() $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); - $rep->Header(); + $rep->NewPage(); $total = array(); $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"); @@ -175,7 +175,7 @@ function print_supplier_balances() $rep->Line($rep->row + 4); while ($trans=db_fetch($res)) { - if ($no_zeros && $trans['TotalAmount'] == 0 && $trans['Allocated'] == 0) continue; + if ($no_zeros && floatcmp(abs($trans['TotalAmount']), $trans['Allocated']) == 0) continue; $rep->NewLine(1, 2); $rep->TextCol(0, 1, $systypes_array[$trans['type']]); $rep->TextCol(1, 2, $trans['reference']);