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

68 lines
2.3 KiB
PHP
Raw Normal View History

2019-03-23 08:10:59 +01:00
<?php
/**
* RemoveBills.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-23 08:10:59 +01:00
namespace FireflyIII\Console\Commands\Correction;
use FireflyIII\Console\Commands\ShowsFriendlyMessages;
2019-03-23 08:10:59 +01:00
use FireflyIII\Models\TransactionJournal;
use FireflyIII\Models\TransactionType;
use Illuminate\Console\Command;
/**
* Class RemoveBills
*/
class RemoveBills extends Command
{
use ShowsFriendlyMessages;
2019-03-23 08:10:59 +01:00
protected $description = 'Remove bills from transactions that shouldn\'t have one.';
protected $signature = 'firefly-iii:remove-bills';
2019-03-23 08:10:59 +01:00
/**
* Execute the console command.
*
* @return int
2019-03-23 08:10:59 +01:00
*/
public function handle(): int
{
2023-01-03 06:48:53 +01:00
/** @var TransactionType|null $withdrawal */
2019-03-23 08:10:59 +01:00
$withdrawal = TransactionType::where('type', TransactionType::WITHDRAWAL)->first();
2021-03-12 06:30:40 +01:00
if (null === $withdrawal) {
2020-07-30 20:55:58 +02:00
return 0;
}
2021-03-12 06:30:40 +01:00
$journals = TransactionJournal::whereNotNull('bill_id')->where('transaction_type_id', '!=', $withdrawal->id)->get();
2019-03-23 08:10:59 +01:00
/** @var TransactionJournal $journal */
foreach ($journals as $journal) {
$this->friendlyWarning(sprintf('Transaction journal #%d will be unlinked from bill #%d.', $journal->id, $journal->bill_id));
2019-03-23 08:10:59 +01:00
$journal->bill_id = null;
$journal->save();
}
if ($journals->count() > 0) {
$this->friendlyInfo('Fixed all transaction journals so they have correct bill information.');
2019-03-23 08:10:59 +01:00
}
$this->friendlyPositive('All bills and journals are OK');
2020-03-21 15:43:41 +01:00
2019-03-23 08:10:59 +01:00
return 0;
}
}