sendReport( $this->option('date'), $this->option('from'), $this->option('to') ); Log::channel('erp-request-report')->info('ERP 请求日报已发送', $result); $this->info("ERP 请求日报已发送:{$result['date']},{$result['company_count']} 家公司,{$result['request_count']} 次请求。"); return self::SUCCESS; } catch (\Throwable $e) { Log::channel('erp-request-report')->error('ERP 请求日报发送失败', [ 'message' => $e->getMessage(), ]); $this->error($e->getMessage()); return self::FAILURE; } } }