remove update target pad from spreadsheet
This commit is contained in:
@@ -196,10 +196,10 @@ class ScrapingDataJob implements ShouldQueue
|
|||||||
private function processTaskDetails(ServiceTabPbgTask $service, string $uuid): void
|
private function processTaskDetails(ServiceTabPbgTask $service, string $uuid): void
|
||||||
{
|
{
|
||||||
// Call all detail scraping methods for this task
|
// Call all detail scraping methods for this task
|
||||||
// $service->scraping_task_details($uuid);
|
$service->scraping_task_details($uuid);
|
||||||
// $service->scraping_pbg_data_list($uuid);
|
$service->scraping_pbg_data_list($uuid);
|
||||||
// $service->scraping_task_retributions($uuid);
|
$service->scraping_task_retributions($uuid);
|
||||||
// $service->scraping_task_integrations($uuid);
|
$service->scraping_task_integrations($uuid);
|
||||||
$service->scraping_task_detail_status($uuid);
|
$service->scraping_task_detail_status($uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -248,7 +248,6 @@ class ServiceGoogleSheet
|
|||||||
]);
|
]);
|
||||||
try {
|
try {
|
||||||
$sections = [
|
$sections = [
|
||||||
'TARGET_PAD' => "TARGET PAD 2024",
|
|
||||||
'KEKURANGAN_POTENSI' => "DEVIASI TARGET DENGAN POTENSI TOTAL BERKAS",
|
'KEKURANGAN_POTENSI' => "DEVIASI TARGET DENGAN POTENSI TOTAL BERKAS",
|
||||||
'TOTAL_POTENSI_BERKAS' => "•TOTAL BERKAS 2025",
|
'TOTAL_POTENSI_BERKAS' => "•TOTAL BERKAS 2025",
|
||||||
'BELUM_TERVERIFIKASI' => "•BERKAS AKTUAL BELUM TERVERIFIKASI (POTENSI):",
|
'BELUM_TERVERIFIKASI' => "•BERKAS AKTUAL BELUM TERVERIFIKASI (POTENSI):",
|
||||||
@@ -314,7 +313,6 @@ class ServiceGoogleSheet
|
|||||||
|
|
||||||
// Save data settings
|
// Save data settings
|
||||||
$dataSettings = [
|
$dataSettings = [
|
||||||
'TARGET_PAD' => $result['TARGET_PAD']['nominal'] ?? null,
|
|
||||||
'KEKURANGAN_POTENSI' => $result['KEKURANGAN_POTENSI']['nominal'] ?? null,
|
'KEKURANGAN_POTENSI' => $result['KEKURANGAN_POTENSI']['nominal'] ?? null,
|
||||||
'REALISASI_TERBIT_PBG_COUNT' => $result['REALISASI_TERBIT_PBG']['total'] ?? null,
|
'REALISASI_TERBIT_PBG_COUNT' => $result['REALISASI_TERBIT_PBG']['total'] ?? null,
|
||||||
'REALISASI_TERBIT_PBG_SUM' => $result['REALISASI_TERBIT_PBG']['nominal'] ?? null,
|
'REALISASI_TERBIT_PBG_SUM' => $result['REALISASI_TERBIT_PBG']['nominal'] ?? null,
|
||||||
@@ -363,7 +361,6 @@ class ServiceGoogleSheet
|
|||||||
public function get_big_resume_data(){
|
public function get_big_resume_data(){
|
||||||
try {
|
try {
|
||||||
$sections = [
|
$sections = [
|
||||||
'TARGET_PAD' => "TARGET PAD 2024",
|
|
||||||
'KEKURANGAN_POTENSI' => "DEVIASI TARGET DENGAN POTENSI TOTAL BERKAS",
|
'KEKURANGAN_POTENSI' => "DEVIASI TARGET DENGAN POTENSI TOTAL BERKAS",
|
||||||
'TOTAL_POTENSI_BERKAS' => "•TOTAL BERKAS 2025",
|
'TOTAL_POTENSI_BERKAS' => "•TOTAL BERKAS 2025",
|
||||||
'BELUM_TERVERIFIKASI' => "•BERKAS AKTUAL BELUM TERVERIFIKASI (POTENSI):",
|
'BELUM_TERVERIFIKASI' => "•BERKAS AKTUAL BELUM TERVERIFIKASI (POTENSI):",
|
||||||
@@ -391,7 +388,6 @@ class ServiceGoogleSheet
|
|||||||
|
|
||||||
// Save data settings
|
// Save data settings
|
||||||
$dataSettings = [
|
$dataSettings = [
|
||||||
'TARGET_PAD' => $this->convertToDecimal($result['TARGET_PAD']['nominal']) ?? 0,
|
|
||||||
'KEKURANGAN_POTENSI' => $this->convertToDecimal($result['KEKURANGAN_POTENSI']['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_COUNT' => $this->convertToInteger($result['REALISASI_TERBIT_PBG']['total']) ?? 0,
|
||||||
'REALISASI_TERBIT_PBG_SUM' => $this->convertToDecimal($result['REALISASI_TERBIT_PBG']['nominal']) ?? 0,
|
'REALISASI_TERBIT_PBG_SUM' => $this->convertToDecimal($result['REALISASI_TERBIT_PBG']['nominal']) ?? 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user