@@ -130,6 +130,20 @@
|
|||||||
options: ''
|
options: ''
|
||||||
type: int
|
type: int
|
||||||
description: 'Initial zoom level on the map'
|
description: 'Initial zoom level on the map'
|
||||||
|
- key: airports.default_ground_handling_cost
|
||||||
|
name: 'Default Ground Handling Cost'
|
||||||
|
group: airports
|
||||||
|
value: 250
|
||||||
|
options:
|
||||||
|
type: int
|
||||||
|
description: If an airport's Ground Handling Cost Cost isn't added, set this value by default
|
||||||
|
- key: airports.default_jet_a_fuel_cost
|
||||||
|
name: 'Default Jet A Fuel Cost'
|
||||||
|
group: airports
|
||||||
|
value: 0.7
|
||||||
|
options:
|
||||||
|
type: text
|
||||||
|
description: If an airport's Jet A Fuel Cost isn't added, set this value by default
|
||||||
- key: bids.disable_flight_on_bid
|
- key: bids.disable_flight_on_bid
|
||||||
name: 'Disable flight on bid'
|
name: 'Disable flight on bid'
|
||||||
group: bids
|
group: bids
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ class UpdateController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function complete()
|
public function complete()
|
||||||
{
|
{
|
||||||
return redirect('/login');
|
return redirect('/admin');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -45,8 +45,20 @@ class AirportImporter extends ImportExport
|
|||||||
$row['id'] = $row['icao'];
|
$row['id'] = $row['icao'];
|
||||||
$row['hub'] = get_truth_state($row['hub']);
|
$row['hub'] = get_truth_state($row['hub']);
|
||||||
|
|
||||||
|
if ($row['ground_handling_cost'] === null && $row['ground_handling_cost'] !== 0.0) {
|
||||||
|
$row['ground_handling_cost'] = (float) setting('airports.default_ground_handling_cost');
|
||||||
|
} else {
|
||||||
|
$row['ground_handling_cost'] = (float) $row['ground_handling_cost'];
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($row['fuel_jeta_cost'] === null && $row['fuel_jeta_cost'] !== 0.0) {
|
||||||
|
$row['fuel_jeta_cost'] = (float) setting('airports.default_jet_a_fuel_cost');
|
||||||
|
} else {
|
||||||
|
$row['fuel_jeta_cost'] = (float) $row['fuel_jeta_cost'];
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$airport = Airport::updateOrCreate([
|
Airport::updateOrCreate([
|
||||||
'id' => $row['icao'],
|
'id' => $row['icao'],
|
||||||
], $row);
|
], $row);
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
|||||||
@@ -21,19 +21,34 @@ class AirportImporter extends BaseImporter
|
|||||||
'lat',
|
'lat',
|
||||||
'lng',
|
'lng',
|
||||||
'hub',
|
'hub',
|
||||||
|
'ground_handling_cost',
|
||||||
|
'fuel_jeta_cost',
|
||||||
];
|
];
|
||||||
|
|
||||||
$count = 0;
|
$count = 0;
|
||||||
$rows = $this->db->readRows($this->table, $this->idField, $start, $fields);
|
$rows = $this->db->readRows($this->table, $this->idField, $start, $fields);
|
||||||
foreach ($rows as $row) {
|
foreach ($rows as $row) {
|
||||||
|
$ground_handling_cost = (float) $row->ground_handling_cost;
|
||||||
|
$fuel_jetA_cost = (float) $row->fuel_jeta_cost;
|
||||||
|
|
||||||
|
if ($ground_handling_cost === null && $ground_handling_cost !== 0) {
|
||||||
|
$ground_handling_cost = (float) setting('general.default_ground_handling_cost');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($fuel_jetA_cost === null && $fuel_jetA_cost !== 0) {
|
||||||
|
$fuel_jetA_cost = (float) setting('general.default_jetA_fuel_cost');
|
||||||
|
}
|
||||||
|
|
||||||
$attrs = [
|
$attrs = [
|
||||||
'id' => trim($row->icao),
|
'id' => trim($row->icao),
|
||||||
'icao' => trim($row->icao),
|
'icao' => trim($row->icao),
|
||||||
'name' => $row->name,
|
'name' => $row->name,
|
||||||
'country' => $row->country,
|
'country' => $row->country,
|
||||||
'lat' => $row->lat,
|
'lat' => $row->lat,
|
||||||
'lon' => $row->lng,
|
'lon' => $row->lng,
|
||||||
'hub' => $row->hub,
|
'hub' => $row->hub,
|
||||||
|
'ground_handling_cost' => $ground_handling_cost,
|
||||||
|
'fuel_jeta_cost' => $fuel_jetA_cost,
|
||||||
];
|
];
|
||||||
|
|
||||||
$w = ['id' => $attrs['id']];
|
$w = ['id' => $attrs['id']];
|
||||||
|
|||||||
@@ -633,6 +633,8 @@ class ImporterTest extends TestCase
|
|||||||
$this->assertEquals(true, $airport->hub);
|
$this->assertEquals(true, $airport->hub);
|
||||||
$this->assertEquals('30.1945', $airport->lat);
|
$this->assertEquals('30.1945', $airport->lat);
|
||||||
$this->assertEquals('-97.6699', $airport->lon);
|
$this->assertEquals('-97.6699', $airport->lon);
|
||||||
|
$this->assertEquals(0.0, $airport->ground_handling_cost);
|
||||||
|
$this->assertEquals(setting('airports.default_jet_a_fuel_cost'), $airport->fuel_jeta_cost);
|
||||||
|
|
||||||
// See if it imported
|
// See if it imported
|
||||||
$airport = Airport::where([
|
$airport = Airport::where([
|
||||||
@@ -641,6 +643,8 @@ class ImporterTest extends TestCase
|
|||||||
|
|
||||||
$this->assertNotNull($airport);
|
$this->assertNotNull($airport);
|
||||||
$this->assertEquals(true, $airport->hub);
|
$this->assertEquals(true, $airport->hub);
|
||||||
|
$this->assertEquals(0.9, $airport->fuel_jeta_cost);
|
||||||
|
$this->assertEquals(setting('airports.default_ground_handling_cost'), $airport->ground_handling_cost);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
icao,iata,name,location,country,timezone,hub,lat,lon,ground_handling_cost,fuel_100ll_cost,fuel_jeta_cost,fuel_mogas_cost
|
icao,iata,name,location,country,timezone,hub,lat,lon,ground_handling_cost,fuel_100ll_cost,fuel_jeta_cost,fuel_mogas_cost
|
||||||
KAUS,AUS,Austin-Bergstrom,"Austin, Texas, USA", United States,America/Chicago,1,30.1945,-97.6699,,,,
|
KAUS,AUS,Austin-Bergstrom,"Austin, Texas, USA", United States,America/Chicago,1,30.1945,-97.6699,0,,,
|
||||||
KSFO,SFO,San Francisco,"San Francisco, California, USA", United States,America/California,"1",30.1945,-97.6699,,,,
|
KSFO,SFO,San Francisco,"San Francisco, California, USA", United States,America/California,1,30.1945,-97.6699,,,0.9,
|
||||||
KJFK,JFK,Kennedy,"Queens, New York, USA", United States,America/New_York,0,30.1945,abcd,,,,
|
KJFK,JFK,Kennedy,"Queens, New York, USA", United States,America/New_York,0,30.1945,abcd,150,,0.8,
|
||||||
|
|||||||
|
Reference in New Issue
Block a user