mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-25 08:21:08 -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!');
|
||||
|
||||
if ($data['post_submit_action'] == 'create_another') {
|
||||
return Redirect::route('transactions.create', $what);
|
||||
return Redirect::route('transactions.create', $what)->withInput();
|
||||
} else {
|
||||
return Redirect::route('transactions.index', $what);
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ class EloquentAccountRepository implements AccountRepositoryInterface
|
||||
|
||||
/**
|
||||
*
|
||||
* TODO
|
||||
*
|
||||
* Also delete: initial balance, initial balance account, and transactions
|
||||
*/
|
||||
|
||||
|
@ -20,6 +20,10 @@
|
||||
|
||||
require __DIR__.'/../bootstrap/autoload.php';
|
||||
|
||||
/*
|
||||
* TODO: add "Create new X" button to any list there is: categories, accounts, piggies, etc.
|
||||
*/
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Turn On The Lights
|
||||
|
Loading…
Reference in New Issue
Block a user