From 2faf3907fe51bebf80c93952a05686ccab206ab7 Mon Sep 17 00:00:00 2001 From: BTMS2 Date: Thu, 17 Oct 2024 11:58:02 +0800 Subject: [PATCH] update ringkasan harian services untuk KPI ppc --- app/Services/Reports/RingkasanHarianService.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Services/Reports/RingkasanHarianService.php b/app/Services/Reports/RingkasanHarianService.php index 39454aa..9ae62db 100644 --- a/app/Services/Reports/RingkasanHarianService.php +++ b/app/Services/Reports/RingkasanHarianService.php @@ -1423,6 +1423,7 @@ class RingkasanHarianService $total_keuntungan_online = $this->getTotalKeuntunganOnline(); $upahsimpankaunter = $this->getUpahSimpanKaunter(); $keuntungansebenarkaunter = $this->getKeuntunganSebenarKaunter(); + $totalpenebusan = $this->getTotalPenebusan(); array_push($laporan_harian, [ 'total_gadai' => $total_gadai, @@ -1431,6 +1432,7 @@ class RingkasanHarianService 'total_keuntungan_online' => $total_keuntungan_online, 'upahsimpankaunter' => $upahsimpankaunter, 'keuntungansebenarkaunter' => $keuntungansebenarkaunter, + 'total_tebus' => $totalpenebusan, ]); return response()->json($laporan_harian);