Made clear what "account with fees" means (#2664)

Should have done this in the previous PR: https://github.com/invoiceninja/invoiceninja/pull/2663
This commit is contained in:
Wim de Ruijter 2019-02-11 21:12:42 +01:00 committed by David Bomba
parent a0b85b491f
commit 48c3b5fcff

View File

@ -125,7 +125,7 @@ class SendReminders extends Command
private function chargeLateFees() private function chargeLateFees()
{ {
$accounts = $this->accountRepo->findWithFees(); $accounts = $this->accountRepo->findWithFees();
$this->info(date('r ') . $accounts->count() . ' accounts found with fees'); $this->info(date('r ') . $accounts->count() . ' accounts found with fees enabled');
foreach ($accounts as $account) { foreach ($accounts as $account) {
if (! $account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) { if (! $account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) {