Add feature for online transaction report

This commit is contained in:
Afiq Hamzah
2025-06-14 15:11:56 +08:00
parent ff6b9b8b84
commit c9f0cf7419
5 changed files with 168 additions and 7 deletions
@@ -0,0 +1,37 @@
<?php
namespace App\Http\Controllers\Reports;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use App\TransactionOnline;
class BayaranOnlineController extends Controller
{
public function __invoke(Request $request)
{
$transactionOnlineQuery = TransactionOnline::filter($request);
$formatMoney = fn($x) => number_format($x, 2, '.', ',');
$sumTotalPayments = (clone $transactionOnlineQuery)->sum('total_payment');
$sumTotalPayments = $formatMoney($sumTotalPayments);
$nosPayments = (clone $transactionOnlineQuery)->count('total_payment');
$transactions = (clone $transactionOnlineQuery)->select('kodcaw', DB::raw('sum(total_payment) as totalCawanganPayment'), DB::raw('count(reference_no) as totalReferenceNo'))
->groupBy('kodcaw')
->get()
->map(function($x) use($formatMoney) {
$x['totalCawanganPayment'] = $formatMoney($x['totalCawanganPayment']);
return $x;
});
return response()->json([
'nosPayments' => $nosPayments,
'sumTotalPayments' => $sumTotalPayments,
'transactions' => $transactions,
]);
}
}
@@ -0,0 +1,61 @@
<?php
namespace App\Http\Controllers\Reports;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\TransactionOnline;
class BayaranOnlineDetailController extends Controller
{
public function __invoke(Request $request)
{
$transactionOnlineQuery = TransactionOnline::filter($request);
$formatMoney = fn($x) => number_format($x, 2, '.', ',');
$sumTotalPayments = (clone $transactionOnlineQuery)->sum('total_payment');
$sumTotalPayments = $formatMoney($sumTotalPayments);
$sumPaymentNos = (clone $transactionOnlineQuery)->count('total_payment');
$transactions = (clone $transactionOnlineQuery)->select('nokp', 'customer_name', 'norujukan', 'reference_no', 'kodcaw', 'total_payment', 'tarikh', 'masa', 'status')
->get()
->groupBy('nokp')
->map(fn($x) => $x->groupBy('cawangan.details_caw'))
->map(function ($cawangan) {
$all_entries = $cawangan->collapse();
$first = $all_entries->first();
$payment_details = $cawangan->map(function ($cawangan_payments) {
return [
'paymentNos' => $cawangan_payments->count(),
'paymentSum' => $cawangan_payments->sum('total_payment'),
'paymentDetails' => $cawangan_payments->map(function ($x) {
$payment_details = collect($x)->except('nokp', 'customer_name', 'kodcaw', 'cawangan');
return $payment_details;
}),
];
});
return [
'customer_name' => $first->customer_name,
'nokp' => $first->nokp,
'payments' => $payment_details,
];
})
->values();
return response()->json([
'sumTotalPayments' => $sumTotalPayments,
'sumPaymentNos' => $sumPaymentNos,
'transactions' => $transactions,
]);
}
}