mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Last changes to make the import routine work.
This commit is contained in:
parent
4d7f5238dd
commit
98612dd253
@ -291,6 +291,7 @@ class Import
|
||||
|
||||
break;
|
||||
}
|
||||
$job->delete();
|
||||
|
||||
|
||||
}
|
||||
|
@ -379,6 +379,7 @@ class EloquentAccountRepository implements AccountRepositoryInterface
|
||||
$transactionJournal = \App::make(
|
||||
'Firefly\Storage\TransactionJournal\TransactionJournalRepositoryInterface'
|
||||
);
|
||||
$transactionJournal->overruleUser($this->_user);
|
||||
|
||||
$transactionJournal->createSimpleJournal(
|
||||
$initial, $account, 'Initial Balance for ' . $account->name, $amount, $date
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/bin/bash
|
||||
composer self-update
|
||||
#composer self-update
|
||||
composer update
|
||||
php artisan clear-compiled --env=local
|
||||
php artisan ide-helper:generate --env=local
|
||||
php artisan ide-helper:models --env=local --write
|
||||
php artisan optimize --env=local
|
||||
php artisan dump-autoload --env=local
|
||||
php artisan clear-compiled --env=vagrant
|
||||
php artisan ide-helper:generate --env=vagrant
|
||||
php artisan ide-helper:models --env=vagrant --write
|
||||
php artisan optimize --env=vagrant
|
||||
php artisan dump-autoload --env=vagrant
|
@ -7,7 +7,9 @@
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false"
|
||||
verbose="true"
|
||||
stopOnFailure="true"
|
||||
strict="false"
|
||||
syntaxCheck="false"
|
||||
>
|
||||
|
||||
|
5
vagrant-reload.sh
Executable file
5
vagrant-reload.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
php artisan migrate:refresh --seed --env=vagrant
|
||||
rm -f ./app/storage/logs/laravel.log;
|
||||
rm -f ./app/storage/*.json
|
||||
sudo service nginx restart
|
Loading…
Reference in New Issue
Block a user