Files
firefly-iii/app/Console/Commands/Correction/DeleteZeroAmount.php

66 lines
2.1 KiB
PHP
Raw Normal View History

2019-03-18 16:53:05 +01:00
<?php
/**
* DeleteZeroAmount.php
2020-01-23 20:35:02 +01:00
* Copyright (c) 2020 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2019-08-17 12:09:03 +02:00
declare(strict_types=1);
2019-03-18 16:53:05 +01:00
2019-03-23 08:10:59 +01:00
namespace FireflyIII\Console\Commands\Correction;
2019-03-18 16:53:05 +01:00
use FireflyIII\Console\Commands\ShowsFriendlyMessages;
2019-03-23 08:10:59 +01:00
use FireflyIII\Models\Transaction;
2019-06-13 15:48:35 +02:00
use FireflyIII\Models\TransactionJournal;
2019-03-18 16:53:05 +01:00
use Illuminate\Console\Command;
/**
2019-03-23 08:10:59 +01:00
* Class DeleteZeroAmount
2019-03-18 16:53:05 +01:00
*/
2019-03-23 08:10:59 +01:00
class DeleteZeroAmount extends Command
2019-03-18 16:53:05 +01:00
{
use ShowsFriendlyMessages;
2019-03-23 08:10:59 +01:00
protected $description = 'Delete transactions with zero amount.';
2023-11-05 09:54:53 +01:00
protected $signature = 'firefly-iii:delete-zero-amount';
2019-03-18 16:53:05 +01:00
/**
* Execute the console command.
*/
public function handle(): int
{
$set = Transaction::where('amount', 0)->get(['transaction_journal_id'])->pluck('transaction_journal_id')->toArray();
$set = array_unique($set);
2019-03-23 08:10:59 +01:00
$journals = TransactionJournal::whereIn('id', $set)->get();
2023-12-20 19:35:52 +01:00
2019-03-23 08:10:59 +01:00
/** @var TransactionJournal $journal */
foreach ($journals as $journal) {
$this->friendlyWarning(sprintf('Deleted transaction journal #%d because the amount is zero (0.00).', $journal->id));
2023-01-03 06:48:53 +01:00
$journal->delete();
2021-04-07 07:28:43 +02:00
2019-03-23 08:10:59 +01:00
Transaction::where('transaction_journal_id', $journal->id)->delete();
2019-03-18 16:53:05 +01:00
}
2019-03-23 08:10:59 +01:00
if (0 === $journals->count()) {
$this->friendlyPositive('No zero-amount transaction journals.');
2019-03-18 16:53:05 +01:00
}
2019-03-23 08:10:59 +01:00
return 0;
2019-03-18 16:53:05 +01:00
}
}