This commit is contained in:
ct
2025-07-16 12:38:06 +08:00
parent d4b69df538
commit d4c5fb5589
25 changed files with 249 additions and 86 deletions

View File

@@ -28,7 +28,7 @@ public function handle(): void
{
try {
$trackingExport = TrackingExport::findOrFail($this->trackingExportId);
$updateData = [
'export_status' => $this->status,
];
@@ -50,7 +50,7 @@ public function handle(): void
'status' => $this->status,
'error' => $e->getMessage(),
]);
throw $e;
}
}
@@ -63,4 +63,4 @@ public function failed(\Throwable $exception): void
'exception' => $exception->getMessage(),
]);
}
}
}