Get the pilot pay, reconcile with values for subfleet overrides

This commit is contained in:
Nabeel Shahzad
2018-02-27 16:16:40 -06:00
parent bb4fdc5b7f
commit ae0c3c5f27
3 changed files with 154 additions and 7 deletions

View File

@@ -7,6 +7,9 @@ namespace App\Services;
use App\Models\Enums\PirepSource;
use App\Models\Pirep;
use App\Support\Math;
use Money\Currency;
use Money\Money;
class FinanceService extends BaseService
{
@@ -29,15 +32,51 @@ class FinanceService extends BaseService
/**
* Return the pilot's hourly pay for the given PIREP
* @param Pirep $pirep
* @return float
*/
public function getPayForPirep(Pirep $pirep)
public function getPayRateForPirep(Pirep $pirep)
{
# Get the base rate for the rank
$rank = $pirep->user->rank;
$subfleet_id = $pirep->aircraft->subfleet_id;
# find the right subfleet
$override_rate = $rank->subfleets()
->where('subfleet_id', $subfleet_id)
->first()
->pivot;
if($pirep->source === PirepSource::ACARS) {
$base_rate = $rank->acars_base_pay_rate;
$override_rate = $override_rate->acars_pay;
} else {
$base_rate = $rank->manual_base_pay_rate;
$override_rate = $override_rate->manual_pay;
}
if(!$override_rate) {
return $base_rate;
}
# Not a percentage override
if(substr_count($override_rate, '%') === 0) {
return $override_rate;
}
return Math::addPercent($base_rate, $override_rate);
}
/**
* Get the user's payment amount for a PIREP
* @param Pirep $pirep
* @return Money
* @throws \InvalidArgumentException
*/
public function getPilotPilotPay(Pirep $pirep)
{
$pilot_rate = $this->getPayRateForPirep($pirep) / 60;
$payment = $pirep->flight_time * $pilot_rate;
return new Money($payment, new Currency(config('phpvms.currency')));
}
}