2016-11-09 21:36:54 +01:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* MultiYearReportGenerator.php
|
2017-10-21 08:40:00 +02:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
2016-11-09 21:36:54 +01:00
|
|
|
*
|
2017-10-21 08:40:00 +02:00
|
|
|
* This file is part of Firefly III.
|
2016-11-09 21:36:54 +01:00
|
|
|
*
|
2017-10-21 08:40:00 +02:00
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* Firefly III 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2017-12-17 14:41:58 +01:00
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
2016-11-09 21:36:54 +01:00
|
|
|
*/
|
2017-04-09 07:44:22 +02:00
|
|
|
declare(strict_types=1);
|
2016-11-09 21:36:54 +01:00
|
|
|
|
|
|
|
|
namespace FireflyIII\Generator\Report\Standard;
|
|
|
|
|
|
|
|
|
|
use Carbon\Carbon;
|
|
|
|
|
use FireflyIII\Generator\Report\ReportGeneratorInterface;
|
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
|
|
|
|
|
/**
|
2017-11-15 12:25:49 +01:00
|
|
|
* Class MonthReportGenerator.
|
2016-11-09 21:36:54 +01:00
|
|
|
*/
|
|
|
|
|
class MultiYearReportGenerator implements ReportGeneratorInterface
|
|
|
|
|
{
|
2018-07-07 07:18:49 +02:00
|
|
|
/** @var Collection The accounts involved. */
|
2016-11-09 21:36:54 +01:00
|
|
|
private $accounts;
|
2018-07-07 07:18:49 +02:00
|
|
|
/** @var Carbon The end date. */
|
2016-11-09 21:36:54 +01:00
|
|
|
private $end;
|
2018-07-07 07:18:49 +02:00
|
|
|
/** @var Carbon The start date. */
|
2016-11-09 21:36:54 +01:00
|
|
|
private $start;
|
|
|
|
|
|
|
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Generates the report.
|
|
|
|
|
*
|
2016-11-09 21:36:54 +01:00
|
|
|
* @return string
|
2018-07-23 21:49:15 +02:00
|
|
|
* @throws \Throwable
|
2016-11-09 21:36:54 +01:00
|
|
|
*/
|
|
|
|
|
public function generate(): string
|
|
|
|
|
{
|
|
|
|
|
// and some id's, joined:
|
2018-04-02 14:42:07 +02:00
|
|
|
$accountIds = implode(',', $this->accounts->pluck('id')->toArray());
|
2016-11-09 21:36:54 +01:00
|
|
|
$reportType = 'default';
|
|
|
|
|
|
|
|
|
|
// continue!
|
|
|
|
|
return view(
|
|
|
|
|
'reports.default.multi-year',
|
|
|
|
|
compact('accountIds', 'reportType')
|
|
|
|
|
)->with('start', $this->start)->with('end', $this->end)->render();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Sets the accounts used in the report.
|
|
|
|
|
*
|
2016-11-09 21:36:54 +01:00
|
|
|
* @param Collection $accounts
|
|
|
|
|
*
|
|
|
|
|
* @return ReportGeneratorInterface
|
|
|
|
|
*/
|
|
|
|
|
public function setAccounts(Collection $accounts): ReportGeneratorInterface
|
|
|
|
|
{
|
|
|
|
|
$this->accounts = $accounts;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-08 21:50:20 +01:00
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Sets the budgets used in the report.
|
|
|
|
|
*
|
2016-12-08 21:50:20 +01:00
|
|
|
* @param Collection $budgets
|
|
|
|
|
*
|
|
|
|
|
* @return ReportGeneratorInterface
|
|
|
|
|
*/
|
|
|
|
|
public function setBudgets(Collection $budgets): ReportGeneratorInterface
|
|
|
|
|
{
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 06:23:21 +01:00
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Sets the categories used in the report.
|
|
|
|
|
*
|
2016-11-10 06:23:21 +01:00
|
|
|
* @param Collection $categories
|
|
|
|
|
*
|
|
|
|
|
* @return ReportGeneratorInterface
|
|
|
|
|
*/
|
|
|
|
|
public function setCategories(Collection $categories): ReportGeneratorInterface
|
|
|
|
|
{
|
2016-11-18 20:06:08 +01:00
|
|
|
return $this;
|
2016-11-10 06:23:21 +01:00
|
|
|
}
|
|
|
|
|
|
2016-11-09 21:36:54 +01:00
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Sets the end date used in the report.
|
|
|
|
|
*
|
2016-11-09 21:36:54 +01:00
|
|
|
* @param Carbon $date
|
|
|
|
|
*
|
|
|
|
|
* @return ReportGeneratorInterface
|
|
|
|
|
*/
|
|
|
|
|
public function setEndDate(Carbon $date): ReportGeneratorInterface
|
|
|
|
|
{
|
|
|
|
|
$this->end = $date;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-10 18:09:36 +01:00
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Unused setter for expenses.
|
|
|
|
|
*
|
2017-12-10 18:09:36 +01:00
|
|
|
* @param Collection $expense
|
|
|
|
|
*
|
|
|
|
|
* @return ReportGeneratorInterface
|
|
|
|
|
*/
|
|
|
|
|
public function setExpense(Collection $expense): ReportGeneratorInterface
|
|
|
|
|
{
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-09 21:36:54 +01:00
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Set the start date of the report.
|
|
|
|
|
*
|
2016-11-09 21:36:54 +01:00
|
|
|
* @param Carbon $date
|
|
|
|
|
*
|
|
|
|
|
* @return ReportGeneratorInterface
|
|
|
|
|
*/
|
|
|
|
|
public function setStartDate(Carbon $date): ReportGeneratorInterface
|
|
|
|
|
{
|
|
|
|
|
$this->start = $date;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
2017-02-15 20:07:10 +01:00
|
|
|
|
|
|
|
|
/**
|
2018-07-07 07:18:49 +02:00
|
|
|
* Set the tags for the report.
|
|
|
|
|
*
|
2017-02-15 20:07:10 +01:00
|
|
|
* @param Collection $tags
|
|
|
|
|
*
|
|
|
|
|
* @return ReportGeneratorInterface
|
|
|
|
|
*/
|
|
|
|
|
public function setTags(Collection $tags): ReportGeneratorInterface
|
|
|
|
|
{
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
2016-12-22 19:42:45 +01:00
|
|
|
}
|