X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/923c8609be1b07bfdcbc515a5e3a2a64e2edbedb..06e79bf0f4ad9d5499f4435d2158d8a064034a8f:/SL/Controller/YearEndTransactions.pm diff --git a/SL/Controller/YearEndTransactions.pm b/SL/Controller/YearEndTransactions.pm index 75998c5c6..37517bae8 100644 --- a/SL/Controller/YearEndTransactions.pm +++ b/SL/Controller/YearEndTransactions.pm @@ -205,7 +205,7 @@ sub get_balance { #$main::lxdebug->message(LXDebug->DEBUG2(),"get_balance from=".$self->cb_startdate->to_kivitendo." to=".$self->cb_date->to_kivitendo); my $balance = $chart->get_balance(fromdate => $self->cb_startdate, todate => $self->cb_date); $main::lxdebug->leave_sub(); - return 0 unless $balance != 0; + return 0 if !defined $balance || $balance == 0; return $balance; }