2018-03-06 04:18:54 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
2018-03-06 09:55:48 +08:00
|
|
|
use App\Models\Enums\JournalType;
|
|
|
|
use App\Models\Journal;
|
|
|
|
use App\Models\JournalTransaction;
|
|
|
|
use App\Repositories\AirlineRepository;
|
2018-03-06 04:18:54 +08:00
|
|
|
use App\Repositories\JournalRepository;
|
2018-03-06 12:49:42 +08:00
|
|
|
use App\Services\Finance\PirepFinanceService;
|
2018-03-06 09:55:48 +08:00
|
|
|
use App\Support\Dates;
|
|
|
|
use App\Support\Money;
|
2018-03-06 04:18:54 +08:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class FinanceController
|
|
|
|
* @package App\Http\Controllers\Admin
|
|
|
|
*/
|
|
|
|
class FinanceController extends BaseController
|
|
|
|
{
|
2018-03-06 09:55:48 +08:00
|
|
|
private $airlineRepo,
|
|
|
|
$financeSvc,
|
2018-03-06 04:18:54 +08:00
|
|
|
$journalRepo;
|
|
|
|
|
|
|
|
/**
|
2018-03-06 20:17:45 +08:00
|
|
|
* @param AirlineRepository $airlineRepo
|
2018-03-06 12:49:42 +08:00
|
|
|
* @param PirepFinanceService $financeSvc
|
2018-03-06 04:18:54 +08:00
|
|
|
* @param JournalRepository $journalRepo
|
|
|
|
*/
|
|
|
|
public function __construct(
|
2018-03-06 09:55:48 +08:00
|
|
|
AirlineRepository $airlineRepo,
|
2018-03-06 12:49:42 +08:00
|
|
|
PirepFinanceService $financeSvc,
|
2018-03-06 04:18:54 +08:00
|
|
|
JournalRepository $journalRepo
|
|
|
|
) {
|
2018-03-06 09:55:48 +08:00
|
|
|
$this->airlineRepo = $airlineRepo;
|
2018-03-06 04:18:54 +08:00
|
|
|
$this->financeSvc = $financeSvc;
|
|
|
|
$this->journalRepo = $journalRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-03-06 09:55:48 +08:00
|
|
|
* Display the summation tables for a given month by airline
|
|
|
|
* @param Request $request
|
|
|
|
* @return mixed
|
|
|
|
* @throws \UnexpectedValueException
|
|
|
|
* @throws \InvalidArgumentException
|
2018-03-06 04:18:54 +08:00
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
2018-03-06 09:55:48 +08:00
|
|
|
$month = $request->query('month', date('Y-m'));
|
|
|
|
$between = Dates::getMonthBoundary($month);
|
2018-03-06 04:18:54 +08:00
|
|
|
|
2018-03-06 09:55:48 +08:00
|
|
|
$first_journal = Journal::where(['type' => JournalType::AIRLINE])
|
|
|
|
->orderBy('created_at', 'asc')
|
|
|
|
->limit(1)
|
|
|
|
->first();
|
|
|
|
|
|
|
|
$transaction_groups = [];
|
|
|
|
$airlines = $this->airlineRepo->orderBy('icao')->all();
|
|
|
|
|
|
|
|
# group by the airline
|
|
|
|
foreach($airlines as $airline) {
|
|
|
|
|
|
|
|
# Return all the transactions, grouped by the transaction group
|
|
|
|
$transactions = JournalTransaction::groupBy('transaction_group')
|
|
|
|
->selectRaw('transaction_group, currency,
|
|
|
|
SUM(credit) as sum_credits,
|
|
|
|
SUM(debit) as sum_debits')
|
|
|
|
->where([
|
|
|
|
'journal_id' => $airline->journal->id
|
|
|
|
])
|
|
|
|
->whereBetween('created_at', $between, '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;
|
|
|
|
}
|
|
|
|
|
|
|
|
$transaction_groups[] = [
|
|
|
|
'airline' => $airline,
|
|
|
|
'credits' => new Money($sum_all_credits),
|
|
|
|
'debits' => new Money($sum_all_debits),
|
|
|
|
'transactions' => $transactions,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return view('admin.finances.index', [
|
|
|
|
'current_month' => $month,
|
|
|
|
'months_list' => Dates::getMonthsList($first_journal->created_at),
|
|
|
|
'transaction_groups' => $transaction_groups,
|
|
|
|
]);
|
2018-03-06 04:18:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a month
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|