From 5c4cebd2b3ddfef79c27a6c43bc9a79531e5b89a Mon Sep 17 00:00:00 2001 From: arifal Date: Mon, 8 Sep 2025 13:07:17 +0700 Subject: [PATCH] remove update target pad from spreadsheet --- app/Jobs/ScrapingDataJob.php | 8 ++++---- app/Services/ServiceGoogleSheet.php | 4 ---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/app/Jobs/ScrapingDataJob.php b/app/Jobs/ScrapingDataJob.php index e752fe1..022cb9e 100644 --- a/app/Jobs/ScrapingDataJob.php +++ b/app/Jobs/ScrapingDataJob.php @@ -196,10 +196,10 @@ class ScrapingDataJob implements ShouldQueue private function processTaskDetails(ServiceTabPbgTask $service, string $uuid): void { // Call all detail scraping methods for this task - // $service->scraping_task_details($uuid); - // $service->scraping_pbg_data_list($uuid); - // $service->scraping_task_retributions($uuid); - // $service->scraping_task_integrations($uuid); + $service->scraping_task_details($uuid); + $service->scraping_pbg_data_list($uuid); + $service->scraping_task_retributions($uuid); + $service->scraping_task_integrations($uuid); $service->scraping_task_detail_status($uuid); } diff --git a/app/Services/ServiceGoogleSheet.php b/app/Services/ServiceGoogleSheet.php index e7990ab..d04147b 100644 --- a/app/Services/ServiceGoogleSheet.php +++ b/app/Services/ServiceGoogleSheet.php @@ -248,7 +248,6 @@ class ServiceGoogleSheet ]); try { $sections = [ - 'TARGET_PAD' => "TARGET PAD 2024", 'KEKURANGAN_POTENSI' => "DEVIASI TARGET DENGAN POTENSI TOTAL BERKAS", 'TOTAL_POTENSI_BERKAS' => "•TOTAL BERKAS 2025", 'BELUM_TERVERIFIKASI' => "•BERKAS AKTUAL BELUM TERVERIFIKASI (POTENSI):", @@ -314,7 +313,6 @@ class ServiceGoogleSheet // Save data settings $dataSettings = [ - 'TARGET_PAD' => $result['TARGET_PAD']['nominal'] ?? null, 'KEKURANGAN_POTENSI' => $result['KEKURANGAN_POTENSI']['nominal'] ?? null, 'REALISASI_TERBIT_PBG_COUNT' => $result['REALISASI_TERBIT_PBG']['total'] ?? null, 'REALISASI_TERBIT_PBG_SUM' => $result['REALISASI_TERBIT_PBG']['nominal'] ?? null, @@ -363,7 +361,6 @@ class ServiceGoogleSheet public function get_big_resume_data(){ try { $sections = [ - 'TARGET_PAD' => "TARGET PAD 2024", 'KEKURANGAN_POTENSI' => "DEVIASI TARGET DENGAN POTENSI TOTAL BERKAS", 'TOTAL_POTENSI_BERKAS' => "•TOTAL BERKAS 2025", 'BELUM_TERVERIFIKASI' => "•BERKAS AKTUAL BELUM TERVERIFIKASI (POTENSI):", @@ -391,7 +388,6 @@ class ServiceGoogleSheet // Save data settings $dataSettings = [ - 'TARGET_PAD' => $this->convertToDecimal($result['TARGET_PAD']['nominal']) ?? 0, 'KEKURANGAN_POTENSI' => $this->convertToDecimal($result['KEKURANGAN_POTENSI']['nominal']) ?? 0, 'REALISASI_TERBIT_PBG_COUNT' => $this->convertToInteger($result['REALISASI_TERBIT_PBG']['total']) ?? 0, 'REALISASI_TERBIT_PBG_SUM' => $this->convertToDecimal($result['REALISASI_TERBIT_PBG']['nominal']) ?? 0,