update status manual jika ada cancel / waiting billing

This commit is contained in:
2025-07-18 09:59:27 +07:00
parent 05bed90598
commit 60f5f38ffe
3 changed files with 7 additions and 4 deletions

View File

@@ -57,18 +57,18 @@ class AutoUpdateLogStatus extends Command
$cancelLogs = RequestLog::where('final_log', 0)
->whereNull('deleted_at')
->where('submission_date', '<', $sixMonthsAgo)
->where('status', '!=', 'cancel')
->where('status', '!=', 'canceled')
->get();
foreach ($cancelLogs as $log) {
RequestLogHistory::create([
'request_log_id' => $log->id,
'old_status' => $log->status,
'new_status' => 'cancel',
'new_status' => 'canceled',
'notes' => 'Auto update status via cronjob',
'changed_at' => now(),
]);
$log->update(['status' => 'cancel']);
$log->update(['status' => 'canceled']);
}
$this->info("Auto update selesai. Billing: " . count($billingLogs) . ", Cancel: " . count($cancelLogs));