mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-14 00:04:24 +00:00
Greatly expanded report functionality.
This commit is contained in:
@@ -22,33 +22,15 @@ interface ReportInterface
|
||||
public function expensesGroupedByAccount(Carbon $start, Carbon $end, $limit = 15);
|
||||
|
||||
/**
|
||||
* Gets all the users shared and non-shared accounts combined with various meta-data
|
||||
* to display the amount of money spent that month compared to what's been spend within
|
||||
* budgets.
|
||||
*
|
||||
* @param Carbon $date
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
public function getBudgetsForMonth(Carbon $date);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
public function getTransfersToSharedGroupedByAccounts(Carbon $date);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
public function getPiggyBanksForMonth(Carbon $date);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
* @param int $limit
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getCategoriesForMonth(Carbon $date, $limit = 15);
|
||||
public function getAccountListBudgetOverview(Carbon $date);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
@@ -57,14 +39,28 @@ interface ReportInterface
|
||||
*/
|
||||
public function getAccountsForMonth(Carbon $date);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
public function getBudgetsForMonth(Carbon $date);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
* @param int $limit
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getCategoriesForMonth(Carbon $date, $limit = 15);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
* @param int $limit
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
public function getExpenseGroupedForMonth(Carbon $date, $limit = 15);
|
||||
|
||||
public function getExpenseGroupedForMonth(Carbon $date, $limit = 15);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
@@ -74,6 +70,13 @@ interface ReportInterface
|
||||
*/
|
||||
public function getIncomeForMonth(Carbon $date, $shared = false);
|
||||
|
||||
/**
|
||||
* @param Carbon $date
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
public function getPiggyBanksForMonth(Carbon $date);
|
||||
|
||||
/**
|
||||
* @param Carbon $start
|
||||
*
|
||||
|
Reference in New Issue
Block a user