Skip to content

Commit

Permalink
Add fare type for pax/cargo/mixed flights #621
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Mar 6, 2020
1 parent 9f3ddd5 commit 838a679
Show file tree
Hide file tree
Showing 12 changed files with 148 additions and 44 deletions.
34 changes: 34 additions & 0 deletions app/Database/migrations/2020_03_06_141153_fares_add_type.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

use App\Models\Enums\FareType;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class FaresAddType extends Migration
{
/**
* Add a `pilot_pay` column for a fixed amount to pay to a pilot for a flight
*/
public function up()
{
Schema::table('fares', function (Blueprint $table) {
$table->unsignedTinyInteger('type')
->default(FareType::PASSENGER)
->nullable()
->after('capacity');
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('fares', function (Blueprint $table) {
$table->dropColumn('type');
});
}
}
14 changes: 11 additions & 3 deletions app/Http/Controllers/Admin/FareController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use App\Http\Controllers\Admin\Traits\Importable;
use App\Http\Requests\CreateFareRequest;
use App\Http\Requests\UpdateFareRequest;
use App\Models\Enums\FareType;
use App\Models\Enums\ImportExportType;
use App\Repositories\FareRepository;
use App\Services\ExportService;
Expand Down Expand Up @@ -58,7 +59,9 @@ public function index(Request $request)
*/
public function create()
{
return view('admin.fares.create');
return view('admin.fares.create', [
'fare_types' => FareType::select(),
]);
}

/**
Expand Down Expand Up @@ -94,7 +97,9 @@ public function show($id)
return redirect(route('admin.fares.index'));
}

return view('admin.fares.show')->with('fare', $fare);
return view('admin.fares.show', [
'fare' => $fare,
]);
}

/**
Expand All @@ -112,7 +117,10 @@ public function edit($id)
return redirect(route('admin.fares.index'));
}

return view('admin.fares.edit')->with('fare', $fare);
return view('admin.fares.edit', [
'fare' => $fare,
'fare_types' => FareType::select(),
]);
}

/**
Expand Down
10 changes: 8 additions & 2 deletions app/Http/Controllers/Admin/SubfleetController.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use App\Http\Requests\CreateSubfleetRequest;
use App\Http\Requests\UpdateSubfleetRequest;
use App\Models\Airline;
use App\Models\Enums\FareType;
use App\Models\Enums\FuelType;
use App\Models\Enums\ImportExportType;
use App\Models\Expense;
Expand Down Expand Up @@ -98,6 +99,7 @@ protected function getAvailFares($subfleet)
foreach ($avail_fares as $fare) {
$retval[$fare->id] = $fare->name.
' (price: '.$fare->price.
', type: '.FareType::label($fare->type).
', cost: '.$fare->cost.
', capacity: '.$fare->capacity.')';
}
Expand Down Expand Up @@ -162,7 +164,9 @@ public function store(CreateSubfleetRequest $request)
*/
public function show($id)
{
$subfleet = $this->subfleetRepo->findWithoutFail($id);
$subfleet = $this->subfleetRepo
->with(['fares'])
->findWithoutFail($id);

if (empty($subfleet)) {
Flash::error('Subfleet not found');
Expand All @@ -185,7 +189,9 @@ public function show($id)
*/
public function edit($id)
{
$subfleet = $this->subfleetRepo->findWithoutFail($id);
$subfleet = $this->subfleetRepo
->with(['fares', 'ranks'])
->findWithoutFail($id);

if (empty($subfleet)) {
Flash::error('Subfleet not found');
Expand Down
1 change: 1 addition & 0 deletions app/Http/Resources/Fare.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public function toArray($request)
'price' => $this->price,
'cost' => $this->cost,
'capacity' => $this->capacity,
'type' => $this->type,
'notes' => $this->notes,
'active' => $this->active,
];
Expand Down
16 changes: 16 additions & 0 deletions app/Models/Enums/FareType.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace App\Models\Enums;

use App\Contracts\Enum;

class FareType extends Enum
{
public const PASSENGER = 0;
public const CARGO = 1;

public static $labels = [
self::PASSENGER => 'Passenger',
self::CARGO => 'Cargo',
];
}
5 changes: 5 additions & 0 deletions app/Models/Expense.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,9 @@ public function airline()
{
return $this->belongsTo(Airline::class, 'airline_id');
}

public function ref_model()
{
return $this->morphTo();
}
}
3 changes: 3 additions & 0 deletions app/Models/Fare.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* @property int code
* @property int capacity
* @property int count Only when merged with pivot
* @property int type
* @property string notes
* @property bool active
*/
Expand All @@ -32,12 +33,14 @@ class Fare extends Model
'price' => 'float',
'cost' => 'float',
'capacity' => 'integer',
'type' => 'integer',
'active' => 'boolean',
];

public static $rules = [
'code' => 'required',
'name' => 'required',
'type' => 'required',
];

/**
Expand Down
7 changes: 5 additions & 2 deletions app/Services/Finance/PirepFinanceService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use App\Models\Aircraft;
use App\Models\Airport;
use App\Models\Enums\ExpenseType;
use App\Models\Enums\FareType;
use App\Models\Enums\PirepSource;
use App\Models\Expense;
use App\Models\Pirep;
Expand Down Expand Up @@ -124,13 +125,15 @@ public function payFaresForPirep($pirep): void

Log::info('Finance: Calculate: C='.$credit->toAmount().', D='.$debit->toAmount());

$memo = FareType::label($fare->type).' fare: '.$fare->code.$fare->count
.'; price: '.$fare->price.', cost: '.$fare->cost;

$this->journalRepo->post(
$pirep->airline->journal,
$credit,
$debit,
$pirep,
'Fares '.$fare->code.$fare->count
.'; price: '.$fare->price.', cost: '.$fare->cost,
$memo,
null,
'Fares',
'fare'
Expand Down
36 changes: 29 additions & 7 deletions resources/views/admin/fares/fields.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
</div>
<div class="row">
<div class="form-group col-sm-6">
<div class="form-group col-sm-4">
{{ Form::label('code', 'Code:') }}&nbsp;<span class="required">*</span>
@component('admin.components.info')
How this fare class will show up on a ticket
Expand All @@ -18,7 +18,7 @@
<p class="text-danger">{{ $errors->first('code') }}</p>
</div>

<div class="form-group col-sm-6">
<div class="form-group col-sm-4">
{{ Form::label('name', 'Name:') }}&nbsp;<span class="required">*</span>
@component('admin.components.info')
The fare class name, E.g, "Economy" or "First"
Expand All @@ -27,10 +27,25 @@
<p class="text-danger">{{ $errors->first('name') }}</p>
</div>

<div class="form-group col-sm-4">
{{ Form::label('type', 'Fare Type:') }}&nbsp;<span class="required">*</span>
@component('admin.components.info')
If this is a passenger or cargo fare
@endcomponent
{{ Form::select('type', $fare_types, null , [
'id' => 'type',
'class' => 'form-control select2'
]) }}
<p class="text-danger">{{ $errors->first('type') }}</p>
</div>

</div>
<div class="row">

<div class="form-group col-sm-6">
{{ Form::label('price', 'Price:') }}
@component('admin.components.info')
This is the price of a ticket for a passenger
This is the price of a ticket or price per {{ setting('units.weight') }}
@endcomponent
{{ Form::text('price', null, ['class' => 'form-control', 'placeholder' => 0]) }}
<p class="text-danger">{{ $errors->first('price') }}</p>
Expand All @@ -39,27 +54,33 @@
<div class="form-group col-sm-6">
{{ Form::label('cost', 'Cost:') }}
@component('admin.components.info')
The operating cost
The operating cost per unit (passenger or {{ setting('units.weight') }})
@endcomponent
{{ Form::number('cost', null, ['class' => 'form-control', 'placeholder' => 0, 'step' => '0.01']) }}
<p class="text-danger">{{ $errors->first('cost') }}</p>
</div>

</div>
<div class="row">
<div class="form-group col-sm-6">
{{ Form::label('capacity', 'Capacity:') }}
@component('admin.components.info')
The number of seats available in this class.
Max seats or capacity available. This can be adjusted in the subfleet
@endcomponent
{{ Form::number('capacity', null, ['class' => 'form-control', 'min' => 0]) }}
<p class="text-danger">{{ $errors->first('capacity') }}</p>
</div>

<div class="form-group col-sm-6">
{{ Form::label('notes', 'Notes:') }}
@component('admin.components.info')
Notes for this fare
@endcomponent
{{ Form::text('notes', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('notes') }}</p>
</div>

</div>
<div class="row">
<!-- Active Field -->
<div class="form-group col-sm-12">
{{ Form::label('active', 'Active:') }}
Expand All @@ -68,7 +89,8 @@
{{ Form::checkbox('active', 1, null) }}
</label>
</div>

</div>
<div class="row">
<!-- Submit Field -->
<div class="form-group col-sm-12">
<div class="pull-right">
Expand Down
12 changes: 7 additions & 5 deletions resources/views/admin/subfleets/fares.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<tr>
<th>Name</th>
<th style="text-align: center;">Code</th>
<th style="text-align: center;">Type</th>
<th style="text-align: center;">Capacity (default)</th>
<th style="text-align: center;">Price (default)</th>
<th style="text-align: center;">Cost (default)</th>
Expand All @@ -24,16 +25,17 @@
<tbody>
@foreach($subfleet->fares as $atf)
<tr>
<td class="sorting_1">{{ $atf->name }}</td>
<td style="text-align: center;">{{ $atf->code }}</td>
<td style="text-align: center;">
<td class="sorting_1 text-center">{{ $atf->name }}</td>
<td class="text-center">{{ $atf->code }}</td>
<td class="sorting_1 text-center">{{ \App\Models\Enums\FareType::label($atf->type) }}</td>
<td class="text-center">
<a href="#" data-pk="{{ $atf->id }}" data-name="capacity">{{ $atf->pivot->capacity }}</a>
<span class="small background-color-grey-light">({{ $atf->capacity }})</span>
</td>
<td style="text-align: center;">
<td class="text-center">
<a href="#" data-pk="{{ $atf->id }}" data-name="price">{{ $atf->pivot->price }}</a>
<span class="small background-color-grey-light">({{ $atf->price }})</span></td>
<td style="text-align: center;">
<td class="text-center">
<a href="#" data-pk="{{ $atf->id }}" data-name="cost">{{ $atf->pivot->cost }}</a>
<span class="small background-color-grey-light">({{ $atf->cost}})</span></td>
<td style="text-align: right; width:3%;">
Expand Down
52 changes: 28 additions & 24 deletions resources/views/admin/subfleets/fields.blade.php
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
<div class="row">
<div class="col-sm-12">
@component('admin.components.info')
Subfleets are aircraft groups. The "type" is a short name. Airlines always
group aircraft together by feature, so 737s with winglets might have a type of
"B.738-WL". You can create as many as you want, you need at least one, though.
<div class="col-12">
<div class="row">
<div class="col-sm-12">
@component('admin.components.info')
Subfleets are aircraft groups. The "type" is a short name. Airlines always
group aircraft together by feature, so 737s with winglets might have a type of
"B.738-WL". You can create as many as you want, you need at least one, though.

Read more about subfleets <a href="{{ docs_link('finances') }}" target="_new">here</a>.
@endcomponent
</div>

<div class="form-group col-sm-4">
{{ Form::label('airline_id', 'Airline:') }}
{{ Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) }}
<p class="text-danger">{{ $errors->first('airline_id') }}</p>
</div>
Read more about subfleets <a href="{{ docs_link('finances') }}" target="_new">here</a>.
@endcomponent
</div>
</div>
<div class="row">
<div class="form-group col-sm-4">
{{ Form::label('airline_id', 'Airline:') }}
{{ Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) }}
<p class="text-danger">{{ $errors->first('airline_id') }}</p>
</div>

<div class="form-group col-sm-4">
{{ Form::label('type', 'Type:') }}
{{ Form::text('type', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('type') }}</p>
</div>
<div class="form-group col-sm-4">
{{ Form::label('type', 'Type:') }}
{{ Form::text('type', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('type') }}</p>
</div>

<div class="form-group col-sm-4">
{{ Form::label('name', 'Name:') }}
{{ Form::text('name', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('name') }}</p>
<div class="form-group col-sm-4">
{{ Form::label('name', 'Name:') }}
{{ Form::text('name', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('name') }}</p>
</div>
</div>
</div>

</div>
<div class="row">

Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/default/pireps/fares.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@foreach($aircraft->subfleet->fares as $fare)
<div class="row">
<div class="col">
{{Form::label('fare_'.$fare->id, $fare->name.' ('.$fare->code.')')}}
{{Form::label('fare_'.$fare->id, $fare->name.' ('. \App\Models\Enums\FareType::label($fare->type).', code '.$fare->code.')')}}
<div class="input-group form-group">
{{ Form::number('fare_'.$fare->id, null, ['class' => 'form-control', 'min' => 0]) }}
</div>
Expand Down

0 comments on commit 838a679

Please sign in to comment.