fix pbg task add toggle and rab krk dlh
This commit is contained in:
@@ -34,9 +34,9 @@ class BigdataResume extends Model
|
||||
'process_in_technical_office_sum',
|
||||
'business_rab_count',
|
||||
'business_krk_count',
|
||||
'business_dlh_count',
|
||||
'non_business_rab_count',
|
||||
'non_business_krk_count',
|
||||
'non_business_dlh_count',
|
||||
'resume_type',
|
||||
];
|
||||
|
||||
@@ -155,6 +155,41 @@ class BigdataResume extends Model
|
||||
')
|
||||
->value('total_count') ?? 0;
|
||||
|
||||
// Non-Business DLH count - for each non-business task with data_type=5:
|
||||
// if any status != 1 then return 1, if all status = 1 then return 0, then sum all
|
||||
$business_dlh_count = DB::table('pbg_task')
|
||||
->where(function ($q) {
|
||||
$q->where(function ($q2) {
|
||||
$q2->where(function ($q3) {
|
||||
$q3->whereRaw("LOWER(TRIM(function_type)) LIKE ?", ['%fungsi usaha%'])
|
||||
->whereRaw("LOWER(TRIM(function_type)) LIKE ?", ['%sebagai tempat usaha%']);
|
||||
})
|
||||
->orWhereNull('function_type');
|
||||
})
|
||||
->whereIn("status", PbgTaskStatus::getNonVerified());
|
||||
})
|
||||
->whereYear('task_created_at', $year)
|
||||
->whereExists(function ($query) {
|
||||
$query->select(DB::raw(1))
|
||||
->from('pbg_task_detail_data_lists')
|
||||
->whereColumn('pbg_task_detail_data_lists.pbg_task_uuid', 'pbg_task.uuid')
|
||||
->where('pbg_task_detail_data_lists.data_type', 5);
|
||||
})
|
||||
->selectRaw('
|
||||
SUM(
|
||||
CASE
|
||||
WHEN EXISTS (
|
||||
SELECT 1 FROM pbg_task_detail_data_lists ptddl
|
||||
WHERE ptddl.pbg_task_uuid = pbg_task.uuid
|
||||
AND ptddl.data_type = 5
|
||||
AND ptddl.status != 1
|
||||
) THEN 1
|
||||
ELSE 0
|
||||
END
|
||||
) as total_count
|
||||
')
|
||||
->value('total_count') ?? 0;
|
||||
|
||||
// Non-Business RAB count - for each non-business task with data_type=3:
|
||||
// if any status != 1 then return 1, if all status = 1 then return 0, then sum all
|
||||
$non_business_rab_count = DB::table('pbg_task')
|
||||
@@ -225,60 +260,54 @@ class BigdataResume extends Model
|
||||
')
|
||||
->value('total_count') ?? 0;
|
||||
|
||||
// Non-Business DLH count - for each non-business task with data_type=5:
|
||||
// if any status != 1 then return 1, if all status = 1 then return 0, then sum all
|
||||
$non_business_dlh_count = DB::table('pbg_task')
|
||||
->where(function ($q) {
|
||||
$q->where(function ($q2) {
|
||||
$q2->where(function ($q3) {
|
||||
$q3->whereRaw("LOWER(TRIM(function_type)) NOT LIKE ?", ['%fungsi usaha%'])
|
||||
->whereRaw("LOWER(TRIM(function_type)) NOT LIKE ?", ['%sebagai tempat usaha%']);
|
||||
})
|
||||
->orWhereNull('function_type');
|
||||
})
|
||||
->whereIn("status", PbgTaskStatus::getNonVerified());
|
||||
})
|
||||
|
||||
|
||||
// Debug: Check if there are non-verified tasks and their retribution data
|
||||
$debug_non_verified = PbgTask::whereIn('status', PbgTaskStatus::getNonVerified())
|
||||
->whereYear('task_created_at', $year)
|
||||
->whereExists(function ($query) {
|
||||
$query->select(DB::raw(1))
|
||||
->from('pbg_task_detail_data_lists')
|
||||
->whereColumn('pbg_task_detail_data_lists.pbg_task_uuid', 'pbg_task.uuid')
|
||||
->where('pbg_task_detail_data_lists.data_type', 5);
|
||||
})
|
||||
->selectRaw('
|
||||
SUM(
|
||||
CASE
|
||||
WHEN EXISTS (
|
||||
SELECT 1 FROM pbg_task_detail_data_lists ptddl
|
||||
WHERE ptddl.pbg_task_uuid = pbg_task.uuid
|
||||
AND ptddl.data_type = 5
|
||||
AND ptddl.status != 1
|
||||
) THEN 1
|
||||
ELSE 0
|
||||
END
|
||||
) as total_count
|
||||
')
|
||||
->value('total_count') ?? 0;
|
||||
->with('pbg_task_retributions')
|
||||
->get();
|
||||
|
||||
\Log::info('Non-verified tasks debug', [
|
||||
'year' => $year,
|
||||
'non_verified_statuses' => PbgTaskStatus::getNonVerified(),
|
||||
'tasks_count' => $debug_non_verified->count(),
|
||||
'tasks_with_retribution' => $debug_non_verified->filter(fn($task) => $task->pbg_task_retributions)->count(),
|
||||
'sample_retribution_values' => $debug_non_verified->take(3)->map(fn($task) => [
|
||||
'uuid' => $task->uuid,
|
||||
'status' => $task->status,
|
||||
'has_retribution' => !is_null($task->pbg_task_retributions),
|
||||
'retribution_value' => $task->pbg_task_retributions?->nilai_retribusi_bangunan ?? 'NULL'
|
||||
])
|
||||
]);
|
||||
|
||||
// Get sum values using proper aggregation to handle multiple retributions
|
||||
$stats = PbgTask::leftJoin('pbg_task_retributions as ptr', 'pbg_task.uuid', '=', 'ptr.pbg_task_uid')
|
||||
->whereYear('pbg_task.task_created_at', $year)
|
||||
->selectRaw("
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getVerified()).") THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS verified_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).") THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS non_verified_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getVerified()).") THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS verified_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).") THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS non_verified_total,
|
||||
SUM(CASE WHEN (LOWER(TRIM(pbg_task.function_type)) LIKE '%fungsi usaha%'
|
||||
OR LOWER(TRIM(pbg_task.function_type)) LIKE '%sebagai tempat usaha%')
|
||||
AND pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).") THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS business_total,
|
||||
AND pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).") THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS business_total,
|
||||
SUM(CASE WHEN (LOWER(TRIM(pbg_task.function_type)) NOT LIKE '%fungsi usaha%'
|
||||
AND LOWER(TRIM(pbg_task.function_type)) NOT LIKE '%sebagai tempat usaha%'
|
||||
AND pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified())."))
|
||||
OR (pbg_task.function_type IS NULL AND pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).")) THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS non_business_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getWaitingClickDpmptsp()).") THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS waiting_click_dpmptsp_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getIssuanceRealizationPbg()).") THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS issuance_realization_pbg_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getProcessInTechnicalOffice()).") THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS process_in_technical_office_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getPotention()).") THEN ptr.nilai_retribusi_bangunan ELSE 0 END) AS potention_total
|
||||
OR (pbg_task.function_type IS NULL AND pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).")) THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS non_business_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getWaitingClickDpmptsp()).") THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS waiting_click_dpmptsp_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getIssuanceRealizationPbg()).") THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS issuance_realization_pbg_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getProcessInTechnicalOffice()).") THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS process_in_technical_office_total,
|
||||
SUM(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getPotention()).") THEN COALESCE(ptr.nilai_retribusi_bangunan, 0) ELSE 0 END) AS potention_total,
|
||||
COUNT(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).") THEN 1 END) AS non_verified_tasks_count,
|
||||
COUNT(CASE WHEN pbg_task.status in (".implode(',', PbgTaskStatus::getNonVerified()).") AND ptr.nilai_retribusi_bangunan IS NOT NULL THEN 1 END) AS non_verified_with_retribution_count
|
||||
")
|
||||
->first();
|
||||
|
||||
\Log::info('Stats calculation result', [
|
||||
'non_verified_total' => $stats->non_verified_total ?? 'NULL',
|
||||
'non_verified_tasks_count' => $stats->non_verified_tasks_count ?? 'NULL',
|
||||
'non_verified_with_retribution_count' => $stats->non_verified_with_retribution_count ?? 'NULL'
|
||||
]);
|
||||
|
||||
$service_google_sheet = app(ServiceGoogleSheet::class);
|
||||
|
||||
@@ -305,9 +334,9 @@ class BigdataResume extends Model
|
||||
'process_in_technical_office_sum' => $stats->process_in_technical_office_total ?? 0.00,
|
||||
'business_rab_count' => $business_rab_count,
|
||||
'business_krk_count' => $business_krk_count,
|
||||
'business_dlh_count' => $business_dlh_count,
|
||||
'non_business_rab_count' => $non_business_rab_count,
|
||||
'non_business_krk_count' => $non_business_krk_count,
|
||||
'non_business_dlh_count' => $non_business_dlh_count,
|
||||
'resume_type' => $resume_type,
|
||||
]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user