mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
First attempt at account controller::index.
This commit is contained in:
parent
e3b11a9eb2
commit
8b085af6a1
@ -84,10 +84,10 @@ class AccountController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function edit(Account $account, AccountRepositoryInterface $repository)
|
public function edit(Account $account, AccountRepositoryInterface $repository)
|
||||||
{
|
{
|
||||||
$what = Config::get('firefly.shortNamesByFullName')[$account->accountType->type];
|
$what = Config::get('firefly.shortNamesByFullName')[$account->accountType->type];
|
||||||
$subTitle = 'Edit ' . strtolower(e($account->accountType->type)) . ' "' . e($account->name) . '"';
|
$subTitle = 'Edit ' . strtolower(e($account->accountType->type)) . ' "' . e($account->name) . '"';
|
||||||
$subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what);
|
$subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what);
|
||||||
$openingBalance = $repository->openingBalanceTransaction($account);
|
$openingBalance = $repository->openingBalanceTransaction($account);
|
||||||
|
|
||||||
// pre fill some useful values.
|
// pre fill some useful values.
|
||||||
|
|
||||||
@ -134,7 +134,7 @@ class AccountController extends Controller
|
|||||||
$total = Auth::user()->accounts()->accountTypeIn($types)->count();
|
$total = Auth::user()->accounts()->accountTypeIn($types)->count();
|
||||||
|
|
||||||
// last activity:
|
// last activity:
|
||||||
$start = clone Session::get('start');
|
$start = clone Session::get('start', Carbon::now()->startOfMonth());
|
||||||
$start->subDay();
|
$start->subDay();
|
||||||
$set->each(
|
$set->each(
|
||||||
function (Account $account) use ($start) {
|
function (Account $account) use ($start) {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
use Carbon\Carbon;
|
||||||
use FireflyIII\Models\Preference;
|
use FireflyIII\Models\Preference;
|
||||||
use FireflyIII\Models\TransactionCurrency;
|
use FireflyIII\Models\TransactionCurrency;
|
||||||
use League\FactoryMuffin\Facade as FactoryMuffin;
|
use League\FactoryMuffin\Facade as FactoryMuffin;
|
||||||
@ -121,7 +122,21 @@ class AccountControllerTest extends TestCase
|
|||||||
|
|
||||||
public function testIndex()
|
public function testIndex()
|
||||||
{
|
{
|
||||||
$this->markTestIncomplete();
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
// get currency code:
|
||||||
|
$currency = FactoryMuffin::create('FireflyIII\Models\TransactionCurrency');
|
||||||
|
Amount::shouldReceive('getCurrencyCode')->andReturn($currency->code);
|
||||||
|
|
||||||
|
// put stuff in session:
|
||||||
|
$this->session(['start' => new Carbon, 'end' => new Carbon]);
|
||||||
|
|
||||||
|
// get edit page:
|
||||||
|
$this->call('GET', '/accounts/asset');
|
||||||
|
$this->assertResponseOk();
|
||||||
|
$this->assertViewHas('what', 'asset');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testShow()
|
public function testShow()
|
||||||
|
Loading…
Reference in New Issue
Block a user