X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep108.php;h=f2d6d42387ad5b5f368f51d802bdeb1f5a0f2fd8;hb=4e6c60dfc8ab630d72010941b00f65b9659fe0b3;hp=abb11e7f50227a8b386b6eeb940784eee48e37e1;hpb=a67b7a07178dd92bb8e8bf60b6f7b474a1cbf433;p=fa-stable.git diff --git a/reporting/rep108.php b/reporting/rep108.php index abb11e7f..f2d6d423 100644 --- a/reporting/rep108.php +++ b/reporting/rep108.php @@ -175,12 +175,16 @@ function print_statements() for ($i = 0; $i < 5; $i++) $rep->TextWrap($col[$i], $rep->row, $col[$i + 1] - $col[$i], $str2[$i], 'right'); if ($email == 1) - $rep->End($email, _("Statement") . " " . _("as of") . " " . sql2date($date)); - + { + if (($CustomerRecord["Balance"]) != ($CustomerRecord["Balance"] - $CustomerRecord["Due"])) + $rep->End($email, _("Statement") . " " . _("as of") . " " . sql2date($date) . " " . _("from") . " " . get_company_pref('coy_name')); + else + display_notification(sprintf(_("Customer %s has no overdue debits. No e-mail is sent."), $myrow["DebtorName"])); + } } if (!isset($rep)) - display_notification("No customers with outstanding balances found"); + display_notification(_("No customers with outstanding balances found")); else if ($email == 0) $rep->End(); }