37 lines
1005 B
PHP
37 lines
1005 B
PHP
<?php
|
|
|
|
namespace App\Services\Importers;
|
|
|
|
use App\Models\Rank;
|
|
|
|
class RankImport extends BaseImporter
|
|
{
|
|
protected $table = 'ranks';
|
|
protected $idField = 'rankid';
|
|
|
|
public function run($start = 0)
|
|
{
|
|
$this->comment('--- RANK IMPORT ---');
|
|
|
|
$count = 0;
|
|
$rows = $this->db->readRows($this->table, $this->idField, $start);
|
|
foreach ($rows as $row) {
|
|
$rank = Rank::updateOrCreate(['name' => $row->rank], [
|
|
'image_url' => $row->rankimage,
|
|
'hours' => $row->minhours,
|
|
'acars_base_payrate' => $row->payrate,
|
|
'manual_base_payrate' => $row->payrate,
|
|
]);
|
|
|
|
$this->idMapper->addMapping('ranks', $row->rankid, $rank->id);
|
|
$this->idMapper->addMapping('ranks', $row->rank, $rank->id);
|
|
|
|
if ($rank->wasRecentlyCreated) {
|
|
$count++;
|
|
}
|
|
}
|
|
|
|
$this->info('Imported '.$count.' ranks');
|
|
}
|
|
}
|