don't attempt to convert flight type in flight exporter
This commit is contained in:
@@ -47,7 +47,7 @@ class FlightExporter extends ImportExport
|
|||||||
}
|
}
|
||||||
|
|
||||||
$ret['days'] = $this->getDays($flight);
|
$ret['days'] = $this->getDays($flight);
|
||||||
$ret['flight_type'] = FlightType::convertToCode($ret['flight_type']);
|
#$ret['flight_type'] = FlightType::convertToCode($ret['flight_type']);
|
||||||
|
|
||||||
$ret['fares'] = $this->getFares($flight);
|
$ret['fares'] = $this->getFares($flight);
|
||||||
$ret['fields'] = $this->getFields($flight);
|
$ret['fields'] = $this->getFields($flight);
|
||||||
|
|||||||
@@ -230,6 +230,7 @@ class ImporterTest extends TestCase
|
|||||||
|
|
||||||
$flight = factory(App\Models\Flight::class)->create([
|
$flight = factory(App\Models\Flight::class)->create([
|
||||||
'airline_id' => $airline->id,
|
'airline_id' => $airline->id,
|
||||||
|
'flight_type' => 'J',
|
||||||
'days' => \App\Models\Enums\Days::getDaysMask([
|
'days' => \App\Models\Enums\Days::getDaysMask([
|
||||||
\App\Models\Enums\Days::TUESDAY,
|
\App\Models\Enums\Days::TUESDAY,
|
||||||
\App\Models\Enums\Days::SUNDAY,
|
\App\Models\Enums\Days::SUNDAY,
|
||||||
@@ -262,6 +263,7 @@ class ImporterTest extends TestCase
|
|||||||
|
|
||||||
$this->assertEquals('27', $exported['days']);
|
$this->assertEquals('27', $exported['days']);
|
||||||
$this->assertEquals('VMS', $exported['airline']);
|
$this->assertEquals('VMS', $exported['airline']);
|
||||||
|
$this->assertEquals('J', $exported['flight_type']);
|
||||||
$this->assertEquals('A32X;B74X', $exported['subfleets']);
|
$this->assertEquals('A32X;B74X', $exported['subfleets']);
|
||||||
$this->assertEquals('Y?capacity=100;F', $exported['fares']);
|
$this->assertEquals('Y?capacity=100;F', $exported['fares']);
|
||||||
$this->assertEquals('Departure Gate=4;Arrival Gate=C41', $exported['fields']);
|
$this->assertEquals('Departure Gate=4;Arrival Gate=C41', $exported['fields']);
|
||||||
|
|||||||
Reference in New Issue
Block a user