mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Added the input when creating new transactions.
This commit is contained in:
parent
58d8b6f95b
commit
f511a25c94
@ -294,7 +294,7 @@ class TransactionController extends BaseController
|
|||||||
Session::flash('success', 'New transaction stored!');
|
Session::flash('success', 'New transaction stored!');
|
||||||
|
|
||||||
if ($data['post_submit_action'] == 'create_another') {
|
if ($data['post_submit_action'] == 'create_another') {
|
||||||
return Redirect::route('transactions.create', $what);
|
return Redirect::route('transactions.create', $what)->withInput();
|
||||||
} else {
|
} else {
|
||||||
return Redirect::route('transactions.index', $what);
|
return Redirect::route('transactions.index', $what);
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ class EloquentAccountRepository implements AccountRepositoryInterface
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* TODO
|
*
|
||||||
* Also delete: initial balance, initial balance account, and transactions
|
* Also delete: initial balance, initial balance account, and transactions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -20,6 +20,10 @@
|
|||||||
|
|
||||||
require __DIR__.'/../bootstrap/autoload.php';
|
require __DIR__.'/../bootstrap/autoload.php';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TODO: add "Create new X" button to any list there is: categories, accounts, piggies, etc.
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Turn On The Lights
|
| Turn On The Lights
|
||||||
|
Loading…
Reference in New Issue
Block a user