! -> Note
$ -> Affected files
+03-Dec-2010 Joe Hunt
++ Creating a warning when opening balance in trial balance is not in balance,
+ and a probably cause of that.
+$ /gl/inquiry/gl_trial_balance.php
+ /reporting/rep708.php
+
02-Dec-2010 Joe Hunt
# When deleting a fiscal year, the open balances should share the same trans no.
$ /admin/db/fiscalyear_db.inc
else
$rep->AmountCol(7, 8, abs($tbal), $dec);
$rep->NewLine();
-
+
$rep->Line($rep->row);
-
+ if ($pbal != 0.0)
+ {
+ $rep->NewLine(2);
+ $rep->Font();
+ $rep->TextCol(0, 8, _("The Opening Balance is not in balance, probably due to a non closed Previous Fiscalyear."));
+ }
$rep->End();
}