Files
firefly-iii/app/Generator/Report/Audit/MonthReportGenerator.php

265 lines
9.0 KiB
PHP
Raw Normal View History

<?php
/**
* MonthReportGenerator.php
2020-01-28 08:45:28 +01:00
* Copyright (c) 2019 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.
2017-10-21 08:40:00 +02:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 08:40:00 +02:00
* 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.
2017-10-21 08:40:00 +02:00
*
* 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/>.
*/
/** @noinspection PhpUndefinedMethodInspection */
declare(strict_types=1);
namespace FireflyIII\Generator\Report\Audit;
use Carbon\Carbon;
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Generator\Report\ReportGeneratorInterface;
use FireflyIII\Helpers\Collector\GroupCollectorInterface;
use FireflyIII\Models\Account;
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
2019-08-02 05:44:51 +02:00
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
use Illuminate\Support\Collection;
2018-08-04 17:30:06 +02:00
use Log;
use Throwable;
/**
2017-11-15 12:25:49 +01:00
* Class MonthReportGenerator.
*/
class MonthReportGenerator implements ReportGeneratorInterface
{
2020-10-23 19:11:25 +02:00
private Collection $accounts;
2021-03-21 09:15:40 +01:00
private Carbon $end;
private Carbon $start;
/**
* Generates the report.
*
2021-03-21 09:15:40 +01:00
* @return string
2018-07-23 21:49:15 +02:00
* @throws FireflyException
* @codeCoverageIgnore
*/
public function generate(): string
{
$auditData = [];
$dayBefore = clone $this->start;
$dayBefore->subDay();
/** @var Account $account */
foreach ($this->accounts as $account) {
// balance the day before:
2016-12-27 20:07:28 +01:00
$id = $account->id;
$auditData[$id] = $this->getAuditReport($account, $dayBefore);
}
$defaultShow = ['icon', 'description', 'balance_before', 'amount', 'balance_after', 'date', 'to'];
2016-11-28 20:52:56 +01:00
$reportType = 'audit';
2018-04-02 14:42:07 +02:00
$accountIds = implode(',', $this->accounts->pluck('id')->toArray());
$hideable = ['buttons', 'icon', 'description', 'balance_before', 'amount', 'balance_after', 'date',
'from', 'to', 'budget', 'category', 'bill',
// more new optional fields
'create_date', 'update_date',
2019-08-02 05:44:51 +02:00
// date fields.
'interest_date', 'book_date', 'process_date',
'due_date', 'payment_date', 'invoice_date',
];
2018-08-04 17:30:06 +02:00
try {
$result = prefixView('reports.audit.report', compact('reportType', 'accountIds', 'auditData', 'hideable', 'defaultShow'))
2018-08-04 17:30:06 +02:00
->with('start', $this->start)->with('end', $this->end)->with('accounts', $this->accounts)
->render();
} catch (Throwable $e) {
Log::error(sprintf('Cannot render reports.audit.report: %s', $e->getMessage()));
2019-06-21 19:10:02 +02:00
Log::error($e->getTraceAsString());
$result = sprintf('Could not render report view: %s', $e->getMessage());
2018-08-04 17:30:06 +02:00
}
2018-08-04 17:30:06 +02:00
return $result;
}
/**
* Account collection setter.
*
* @param Collection $accounts
*
* @return ReportGeneratorInterface
2018-08-24 07:18:33 +02:00
* @codeCoverageIgnore
*/
public function setAccounts(Collection $accounts): ReportGeneratorInterface
{
$this->accounts = $accounts;
return $this;
}
/**
* Budget collection setter.
*
* @param Collection $budgets
*
* @return ReportGeneratorInterface
2018-08-24 07:18:33 +02:00
* @codeCoverageIgnore
*/
public function setBudgets(Collection $budgets): ReportGeneratorInterface
{
return $this;
}
/**
* Category collection setter.
*
* @param Collection $categories
*
* @return ReportGeneratorInterface
2018-08-24 07:18:33 +02:00
* @codeCoverageIgnore
*/
public function setCategories(Collection $categories): ReportGeneratorInterface
{
2016-11-18 20:06:08 +01:00
return $this;
}
/**
* End date setter.
*
* @param Carbon $date
*
* @return ReportGeneratorInterface
2018-08-24 07:18:33 +02:00
* @codeCoverageIgnore
*/
public function setEndDate(Carbon $date): ReportGeneratorInterface
{
$this->end = $date;
return $this;
}
2017-12-09 21:49:19 +01:00
/**
* Expenses collection setter.
*
2017-12-09 21:49:19 +01:00
* @param Collection $expense
*
* @return ReportGeneratorInterface
2018-08-24 07:18:33 +02:00
* @codeCoverageIgnore
2017-12-09 21:49:19 +01:00
*/
public function setExpense(Collection $expense): ReportGeneratorInterface
{
2019-06-21 19:10:02 +02:00
// doesn't use expense collection.
2017-12-09 21:49:19 +01:00
return $this;
}
/**
* Start date collection setter.
*
* @param Carbon $date
*
* @return ReportGeneratorInterface
2018-08-24 07:18:33 +02:00
* @codeCoverageIgnore
*/
public function setStartDate(Carbon $date): ReportGeneratorInterface
{
$this->start = $date;
return $this;
}
2016-12-27 20:07:28 +01:00
2017-02-15 22:02:02 +01:00
/**
* Tags collection setter.
*
2017-02-15 22:02:02 +01:00
* @param Collection $tags
*
* @return ReportGeneratorInterface
2018-08-24 07:18:33 +02:00
* @codeCoverageIgnore
2017-02-15 22:02:02 +01:00
*/
public function setTags(Collection $tags): ReportGeneratorInterface
{
return $this;
}
2021-03-21 09:15:40 +01:00
/**
* Get the audit report.
*
* @param Account $account
* @param Carbon $date
*
* @return array
*
* @throws FireflyException
*/
public function getAuditReport(Account $account, Carbon $date): array
{
/** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class);
$accountRepository->setUser($account->user);
/** @var JournalRepositoryInterface $journalRepository */
$journalRepository = app(JournalRepositoryInterface::class);
$journalRepository->setUser($account->user);
/** @var GroupCollectorInterface $collector */
$collector = app(GroupCollectorInterface::class);
$collector->setAccounts(new Collection([$account]))->setRange($this->start, $this->end)->withAccountInformation()
->withBudgetInformation()->withCategoryInformation()->withBillInformation();
$journals = $collector->getExtractedJournals();
$journals = array_reverse($journals, true);
$dayBeforeBalance = app('steam')->balance($account, $date);
$startBalance = $dayBeforeBalance;
$defaultCurrency = app('amount')->getDefaultCurrencyByUser($account->user);
$currency = $accountRepository->getAccountCurrency($account) ?? $defaultCurrency;
foreach ($journals as $index => $journal) {
$journals[$index]['balance_before'] = $startBalance;
$transactionAmount = $journal['amount'];
// make sure amount is in the right "direction".
if ($account->id === $journal['destination_account_id']) {
$transactionAmount = app('steam')->positive($journal['amount']);
}
if ($currency->id === $journal['foreign_currency_id']) {
$transactionAmount = $journal['foreign_amount'];
if ($account->id === $journal['destination_account_id']) {
$transactionAmount = app('steam')->positive($journal['foreign_amount']);
}
}
$newBalance = bcadd($startBalance, $transactionAmount);
$journals[$index]['balance_after'] = $newBalance;
$startBalance = $newBalance;
// add meta dates for each journal.
$journals[$index]['interest_date'] = $journalRepository->getMetaDateById($journal['transaction_journal_id'], 'interest_date');
$journals[$index]['book_date'] = $journalRepository->getMetaDateById($journal['transaction_journal_id'], 'book_date');
$journals[$index]['process_date'] = $journalRepository->getMetaDateById($journal['transaction_journal_id'], 'process_date');
$journals[$index]['due_date'] = $journalRepository->getMetaDateById($journal['transaction_journal_id'], 'due_date');
$journals[$index]['payment_date'] = $journalRepository->getMetaDateById($journal['transaction_journal_id'], 'payment_date');
$journals[$index]['invoice_date'] = $journalRepository->getMetaDateById($journal['transaction_journal_id'], 'invoice_date');
}
$locale = app('steam')->getLocale();
return [
'journals' => $journals,
'currency' => $currency,
'exists' => !empty($journals),
'end' => $this->end->formatLocalized((string)trans('config.month_and_day', [], $locale)),
'endBalance' => app('steam')->balance($account, $this->end),
'dayBefore' => $date->formatLocalized((string)trans('config.month_and_day', [], $locale)),
'dayBeforeBalance' => $dayBeforeBalance,
];
}
}