Improved float compare in certain files (AR/AP ledger)
[fa-stable.git] / reporting / rep101.php
index 3f1ece787898c3784891b58ce565764c19c7afbe..0ff78c8ba7bb569df8b8be90f7608560ab292cf3 100644 (file)
@@ -189,7 +189,7 @@ function print_customer_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($trans['TotalAmount'], $trans['Allocated']) == 0) continue;
                        $rep->NewLine(1, 2);
                        $rep->TextCol(0, 1, $systypes_array[$trans['type']]);
                        $rep->TextCol(1, 2,     $trans['reference']);