mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Fixes for pre flight checks:
This commit is contained in:
parent
403479a11b
commit
b8db1d5d22
@ -165,14 +165,15 @@ class CompanyImport implements ShouldQueue
|
||||
// nlog($this->backup_file);
|
||||
|
||||
if(array_key_exists('import_settings', $this->request_array) && $this->request_array['import_settings'] == 'true') {
|
||||
$this->preFlightChecks()->importSettings();
|
||||
$this->checkUserCount()->preFlightChecks()->importSettings();
|
||||
}
|
||||
|
||||
if(array_key_exists('import_data', $this->request_array) && $this->request_array['import_data'] == 'true') {
|
||||
|
||||
try{
|
||||
|
||||
$this->preFlightChecks()
|
||||
$this->checkUserCount()
|
||||
->preFlightChecks()
|
||||
->purgeCompanyData()
|
||||
->importData();
|
||||
|
||||
@ -277,8 +278,6 @@ class CompanyImport implements ShouldQueue
|
||||
//perform some magic here
|
||||
}
|
||||
|
||||
$this->checkUserCount();
|
||||
|
||||
if(!$this->pre_flight_checks_pass)
|
||||
{
|
||||
$nmo = new NinjaMailerObject;
|
||||
|
Loading…
Reference in New Issue
Block a user