2015-02-23 20:25:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FireflyIII\Helpers\Report;
|
|
|
|
|
|
|
|
use Carbon\Carbon;
|
2015-02-23 21:19:16 +01:00
|
|
|
use FireflyIII\Models\Account;
|
2015-05-16 15:43:58 +02:00
|
|
|
use FireflyIII\Models\Budget;
|
2015-02-23 20:25:48 +01:00
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface ReportQueryInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Helpers\Report
|
|
|
|
*/
|
|
|
|
interface ReportQueryInterface
|
|
|
|
{
|
|
|
|
|
2015-12-11 16:36:40 +01:00
|
|
|
/**
|
2016-01-01 11:32:08 +01:00
|
|
|
* This method returns all the "in" transaction journals for the given account and given period. The amount
|
|
|
|
* is stored in "journalAmount".
|
2015-12-11 16:36:40 +01:00
|
|
|
*
|
2016-01-01 11:32:08 +01:00
|
|
|
* @param Collection $accounts
|
2015-12-18 16:38:50 +01:00
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
2015-12-11 16:36:40 +01:00
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-01-01 11:32:08 +01:00
|
|
|
public function income(Collection $accounts, Carbon $start, Carbon $end);
|
2015-12-11 16:36:40 +01:00
|
|
|
|
2016-01-01 11:32:08 +01:00
|
|
|
/**
|
|
|
|
* This method returns all the "out" transaction journals for the given account and given period. The amount
|
|
|
|
* is stored in "journalAmount".
|
|
|
|
*
|
|
|
|
* @param Collection $accounts
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
|
|
|
public function expense(Collection $accounts, Carbon $start, Carbon $end);
|
2015-12-11 09:39:17 +01:00
|
|
|
|
2015-05-16 16:47:52 +02:00
|
|
|
/**
|
|
|
|
* @param Account $account
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
*
|
2015-06-13 10:02:36 +02:00
|
|
|
* @return string
|
2015-05-16 16:47:52 +02:00
|
|
|
*/
|
2015-07-06 22:12:35 +02:00
|
|
|
public function spentNoBudget(Account $account, Carbon $start, Carbon $end);
|
2015-05-16 15:43:58 +02:00
|
|
|
|
2015-12-31 08:26:04 +01:00
|
|
|
/**
|
|
|
|
* Returns an array of the amount of money spent in the given accounts (on withdrawals, opening balances and transfers)
|
|
|
|
* grouped by month like so: "2015-01" => '123.45'
|
|
|
|
*
|
|
|
|
* @param Collection $accounts
|
2016-01-01 12:41:00 +01:00
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
2015-12-31 08:26:04 +01:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function spentPerMonth(Collection $accounts, Carbon $start, Carbon $end);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of the amount of money spent in the given accounts (on withdrawals, opening balances and transfers)
|
|
|
|
* grouped by month like so: "2015-01" => '123.45'
|
|
|
|
*
|
|
|
|
* @param Collection $accounts
|
2016-01-01 12:41:00 +01:00
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
2015-12-31 08:26:04 +01:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function earnedPerMonth(Collection $accounts, Carbon $start, Carbon $end);
|
|
|
|
|
2015-05-16 14:51:23 +02:00
|
|
|
|
2015-03-29 08:14:32 +02:00
|
|
|
}
|