Import/export expenses #194

This commit is contained in:
Nabeel Shahzad
2018-03-22 17:17:37 -05:00
parent 4e3a9fd9ea
commit a44204b185
32 changed files with 613 additions and 139 deletions

View File

@@ -52,7 +52,6 @@ class AircraftImporter extends ImportExport
public function import(array $row, $index): bool
{
$subfleet = $this->getSubfleet($row['subfleet']);
$row['subfleet_id'] = $subfleet->id;
# Generate a hex code
@@ -76,11 +75,11 @@ class AircraftImporter extends ImportExport
try {
$aircraft->save();
} catch(\Exception $e) {
$this->status = 'Error in row '.$index.': '.$e->getMessage();
$this->errorLog('Error in row '.$index.': '.$e->getMessage());
return false;
}
$this->status = 'Imported '.$row['registration'].' '.$row['name'];
$this->log('Imported '.$row['registration'].' '.$row['name']);
return true;
}
}