X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep706.php;h=a1dece20730fe782b6a9cb74f0bb4ef547d7e0aa;hb=9b413697aa4ca30f7f336dbf5fd04bf8caf2bc43;hp=3f09f5c0083bf81d54436283f0c36413694a693a;hpb=b558c8b9d4f710ffb1c3d2722a850fd394f4d939;p=fa-stable.git diff --git a/reporting/rep706.php b/reporting/rep706.php index 3f09f5c0..a1dece20 100644 --- a/reporting/rep706.php +++ b/reporting/rep706.php @@ -331,11 +331,13 @@ function print_balance_sheet() $rep->AmountCol(2, 3, -$assetsopen * $convert, $dec); $rep->AmountCol(3, 4, -$assetsperiod * $convert, $dec); $rep->AmountCol(4, 5, -$assetsclose * $convert, $dec); + $rep->Font(); $rep->NewLine(); if ($equityopen != 0.0 || $equityperiod != 0.0 || $equityclose != 0.0 || $lopen != 0.0 || $lperiod != 0.0 || $lclose != 0.0) { $rep->NewLine(); + $rep->Font('bold'); $rep->TextCol(0, 2, _('Total') . " " . _('Liabilities') . _(' and ') . _('Equities')); $rep->AmountCol(2, 3, ($lopen + $equityopen + $calculateopen) * -1, $dec); $rep->AmountCol(3, 4, ($lperiod + $equityperiod + $calculateperiod) * -1, $dec); @@ -343,7 +345,6 @@ function print_balance_sheet() $rep->Font(); $rep->NewLine(); } - $rep->Font(); } } }