mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 01:11:37 -06:00
Fixed a bug in the verify routine.
This commit is contained in:
parent
c58eea6654
commit
7f5b94fe43
@ -93,12 +93,21 @@ class VerifyDatabase extends Command
|
|||||||
->leftJoin('users', 'accounts.user_id', '=', 'users.id')
|
->leftJoin('users', 'accounts.user_id', '=', 'users.id')
|
||||||
->groupBy('accounts.id')
|
->groupBy('accounts.id')
|
||||||
->having('transaction_count', '=', 0)
|
->having('transaction_count', '=', 0)
|
||||||
->get(['accounts.id', 'accounts.name', 'accounts.user_id', 'users.email', DB::raw('COUNT(`transactions`.`id`) AS `transaction_count`')]);
|
->get(
|
||||||
|
['accounts.id', 'accounts.encrypted', 'accounts.name', 'accounts.user_id', 'users.email',
|
||||||
|
DB::raw('COUNT(`transactions`.`id`) AS `transaction_count`')]
|
||||||
|
);
|
||||||
|
|
||||||
/** @var stdClass $entry */
|
/** @var stdClass $entry */
|
||||||
foreach ($set as $entry) {
|
foreach ($set as $entry) {
|
||||||
$line = 'User #' . $entry->user_id . ' (' . $entry->email . ') has account #' . $entry->id . ' ("' . Crypt::decrypt($entry->name)
|
|
||||||
. '") which has no transactions.';
|
$isEncrypted = intval($entry->encrypted) === 1;
|
||||||
|
$name = $entry->name;
|
||||||
|
if ($isEncrypted) {
|
||||||
|
$name = Crypt::decrypt($entry->name);
|
||||||
|
}
|
||||||
|
$line = 'User #%d (%s) has account #%d ("%s") which has no transactions.';
|
||||||
|
$line = sprintf($line, $entry->user_id, $entry->email, $entry->id, $name);
|
||||||
$this->line($line);
|
$this->line($line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user