Jump to content

Fuel Tankering Finance


CRolfe

Recommended Posts

I'm trying to figure out how I can modify the app controllers code to following fuel "tankering" logic.

 

What I have done so far was create another field on the PIREP submit labeled block_in_fuel.

That seems to be working fine.

 

But now I want the PirepFinanceService to look for the previous pirep for that aircraft.

Is there a function like that already built I could use to accomplish finding that record?

 

From there I assume I would so something like ...$fuel_used = $pirep->block_fuel - $prevpirep->block_in_fuel

 

I'm a huge noob to Laravel. So any pointers would be appreciated.

Link to comment
Share on other sites

  • 3 weeks later...

After line 154 of App\Services\Finance\PirepFinanceService.php,

Just add this code. I think it should work.

 

$aircraft_id = $pirep->aircraft->id;
$prev_pirep = Pirep::select('block_in_fuel')->where('aircraft_id', $aircraft_id)->first();
$fuel_used = $pirep->block_fuel - $prev_pirep->block_in_fuel;

 

Link to comment
Share on other sites

  • Administrators

Is that also an additional fuel used you want to do? It's probably better to do that in a module listening to one of the PIREP events. That way it won't get overwritten. 

 

Edit: Sorry, just realized we already talked and you opened that Github issue. I'll be adding that in.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...