mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Merge branch 'develop' of https://github.com/JC5/firefly-iii into develop
* 'develop' of https://github.com/JC5/firefly-iii: Should fix frontpage. # Conflicts: # app/Models/TransactionJournal.php # app/Repositories/Account/AccountRepository.php
This commit is contained in:
@@ -40,12 +40,4 @@ interface BudgetReportHelperInterface
|
|||||||
*/
|
*/
|
||||||
public function getBudgetsWithExpenses(Carbon $start, Carbon $end, Collection $accounts): Collection;
|
public function getBudgetsWithExpenses(Carbon $start, Carbon $end, Collection $accounts): Collection;
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $start
|
|
||||||
* @param $end
|
|
||||||
* @param $accounts
|
|
||||||
*
|
|
||||||
* @return Collection
|
|
||||||
*/
|
|
||||||
public function getCategoriesWithTransactions($start, $end, $accounts): Collection;
|
|
||||||
}
|
}
|
||||||
|
@@ -32,6 +32,15 @@ interface ReportHelperInterface
|
|||||||
*/
|
*/
|
||||||
public function getBillReport(Carbon $start, Carbon $end, Collection $accounts): BillCollection;
|
public function getBillReport(Carbon $start, Carbon $end, Collection $accounts): BillCollection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Carbon $start
|
||||||
|
* @param Carbon $end
|
||||||
|
* @param Collection $accounts
|
||||||
|
*
|
||||||
|
* @return Collection
|
||||||
|
*/
|
||||||
|
public function getCategoriesWithTransactions(Carbon $start, Carbon $end, Collection $accounts): Collection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Carbon $start
|
* @param Carbon $start
|
||||||
* @param Carbon $end
|
* @param Carbon $end
|
||||||
@@ -81,14 +90,4 @@ interface ReportHelperInterface
|
|||||||
*/
|
*/
|
||||||
public function tagReport(Carbon $start, Carbon $end, Collection $accounts): array;
|
public function tagReport(Carbon $start, Carbon $end, Collection $accounts): array;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Carbon $start
|
|
||||||
* @param Carbon $end
|
|
||||||
* @param Collection $accounts
|
|
||||||
*
|
|
||||||
* @return Collection
|
|
||||||
*/
|
|
||||||
public function getCategoriesWithExpenses(Carbon $start, Carbon $end, Collection $accounts): Collection;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -338,10 +338,6 @@ class TransactionJournal extends TransactionJournalSupport
|
|||||||
$join->on('transactions.transaction_journal_id', '=', 'transaction_journals.id')->where('transactions.amount', '>', 0);
|
$join->on('transactions.transaction_journal_id', '=', 'transaction_journals.id')->where('transactions.amount', '>', 0);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
// order
|
|
||||||
$query->orderBy('transaction_journals.date', 'DESC')->orderBy('transaction_journals.order', 'ASC')->orderBy('transaction_journals.id', 'DESC');
|
|
||||||
|
|
||||||
$query->groupBy('transaction_journals.id');
|
$query->groupBy('transaction_journals.id');
|
||||||
$query->with(['categories', 'budgets', 'attachments', 'bill','transactions']);
|
$query->with(['categories', 'budgets', 'attachments', 'bill','transactions']);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user