This commit is contained in:
jianghanbo 2024-10-07 11:37:01 +08:00
parent e66c75adaf
commit 6316ce0128
1 changed files with 5 additions and 1 deletions

View File

@ -377,7 +377,11 @@ class SpiderMt extends Command
if (!empty($oldMobile)) { if (!empty($oldMobile)) {
$admin_id = $oldMobile->admin_id; $admin_id = $oldMobile->admin_id;
} else { } else {
try {
$admin_id = $this->poolUser($order->orderStatus, $order->category_desc); $admin_id = $this->poolUser($order->orderStatus, $order->category_desc);
} catch (\Exception $exception) {
continue;
}
} }
if (empty($admin_id)) return null; if (empty($admin_id)) return null;