mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
All kinds of fixes and things. I should really start organizing.
This commit is contained in:
@@ -123,11 +123,7 @@ class Account implements CUD, CommonDatabaseCalls, AccountInterface
|
||||
/*
|
||||
* If present, process parameters for sorting:
|
||||
*/
|
||||
if (isset($parameters['order'])) {
|
||||
foreach ($parameters['order'] as $instr) {
|
||||
$query->orderBy($instr['name'], $instr['dir']);
|
||||
}
|
||||
}
|
||||
$query->orderBy('name', 'ASC');
|
||||
|
||||
/*
|
||||
* If present, process parameters for searching.
|
||||
|
@@ -8,7 +8,6 @@ use LaravelBook\Ardent\Ardent;
|
||||
use FireflyIII\Database\Ifaces\AccountTypeInterface;
|
||||
use FireflyIII\Database\Ifaces\CommonDatabaseCalls;
|
||||
use FireflyIII\Database\Ifaces\CUD;
|
||||
use FireflyIII\Database\Ifaces\AccountTypeInterface;
|
||||
|
||||
/**
|
||||
* Class AccountType
|
||||
|
@@ -289,7 +289,7 @@ class TransactionJournal implements TransactionJournalInterface, CUD, CommonData
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
// TODO: Implement get() method.
|
||||
return $this->getUser()->transactionjournals()->get();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user