phpvms/app/Services/FinanceService.php
Nabeel S 14aacdfb75
Import expense and ledger entries #443 (#588)
* Fix rank importing with PIREP pay #443

* Import ledger information #443

* Uncomment out testing importers

* Import expense log and settings #443

* Formatting
2020-02-25 14:45:23 -05:00

172 lines
5.2 KiB
PHP

<?php
namespace App\Services;
use App\Contracts\Service;
use App\Models\Airline;
use App\Models\Journal;
use App\Models\JournalTransaction;
use App\Repositories\AirlineRepository;
use App\Repositories\JournalRepository;
use App\Support\Dates;
use App\Support\Money;
class FinanceService extends Service
{
private $airlineRepo;
private $journalRepo;
public function __construct(
AirlineRepository $airlineRepo,
JournalRepository $journalRepo
) {
$this->airlineRepo = $airlineRepo;
$this->journalRepo = $journalRepo;
}
/**
* Credit some amount to a given journal
* E.g, some amount for expenses or ground handling fees, etc. Example, to pay a user a dollar
* for a pirep:
*
* creditToJournal($user->journal, new Money(1000), $pirep, 'Payment', 'pirep', 'payment');
*
* @param \App\Models\Journal $journal
* @param Money $amount
* @param \Illuminate\Database\Eloquent\Model $reference
* @param string $memo
* @param string $transaction_group
* @param string|array $tag
* @param string $post_date
*
* @throws \Prettus\Validator\Exceptions\ValidatorException
*
* @return mixed
*/
public function creditToJournal(
Journal $journal,
Money $amount,
$reference,
$memo,
$transaction_group,
$tag,
$post_date = null
) {
return $this->journalRepo->post(
$journal,
$amount,
null,
$reference,
$memo,
null,
$transaction_group,
$tag
);
}
/**
* Charge some expense for a given PIREP to the airline its file against
* E.g, some amount for expenses or ground handling fees, etc.
*
* @param \App\Models\Journal $journal
* @param Money $amount
* @param \Illuminate\Database\Eloquent\Model $reference
* @param string $memo
* @param string $transaction_group
* @param string|array $tag
* @param string $post_date
*
* @throws \Prettus\Validator\Exceptions\ValidatorException
*
* @return mixed
*/
public function debitFromJournal(
Journal $journal,
Money $amount,
$reference,
$memo,
$transaction_group,
$tag,
$post_date = null
) {
return $this->journalRepo->post(
$journal,
null,
$amount,
$reference,
$memo,
$post_date,
$transaction_group,
$tag
);
}
/**
* Get all of the transactions for every airline in a given month
*
* @param string $month In Y-m format
*
* @return array
*/
public function getAllAirlineTransactionsBetween($month): array
{
$between = Dates::getMonthBoundary($month);
$transaction_groups = [];
$airlines = $this->airlineRepo->orderBy('icao')->all();
// group by the airline
foreach ($airlines as $airline) {
$transaction_groups[] = $this->getAirlineTransactionsBetween(
$airline,
$between[0],
$between[1]
);
}
return $transaction_groups;
}
/**
* Get all of the transactions for an airline between two given dates. Returns an array
* with `credits`, `debits` and `transactions` fields, where transactions contains the
* grouped transactions (e.g, "Fares" and "Ground Handling", etc)
*
* @param Airline $airline
* @param string $start_date YYYY-MM-DD
* @param string $end_date YYYY-MM-DD
*
* @return array
*/
public function getAirlineTransactionsBetween($airline, $start_date, $end_date)
{
// Return all the transactions, grouped by the transaction group
$transactions = JournalTransaction::groupBy('transaction_group', 'currency')
->selectRaw('transaction_group,
currency,
SUM(credit) as sum_credits,
SUM(debit) as sum_debits')
->where(['journal_id' => $airline->journal->id])
->whereBetween('created_at', [$start_date, $end_date], 'AND')
->orderBy('sum_credits', 'desc')
->orderBy('sum_debits', 'desc')
->orderBy('transaction_group', 'asc')
->get();
// Summate it so we can show it on the footer of the table
$sum_all_credits = 0;
$sum_all_debits = 0;
foreach ($transactions as $ta) {
$sum_all_credits += $ta->sum_credits ?? 0;
$sum_all_debits += $ta->sum_debits ?? 0;
}
return [
'airline' => $airline,
'credits' => new Money($sum_all_credits),
'debits' => new Money($sum_all_debits),
'transactions' => $transactions,
];
}
}