Platform orders export: include lead_id column

This commit is contained in:
萝卜
2026-03-14 05:53:44 +00:00
parent 8cf28184bd
commit 43311fd3d4
2 changed files with 55 additions and 1 deletions

View File

@@ -1081,6 +1081,7 @@ class PlatformOrderController extends Controller
$headers = [
'ID',
'订单号',
'线索ID',
'站点',
'套餐',
'订单类型',
@@ -1149,6 +1150,7 @@ class PlatformOrderController extends Controller
$row = [
$order->id,
$order->order_no,
(int) (data_get($order->meta, 'platform_lead_id') ?? 0),
$order->merchant?->name ?? '',
$order->plan_name ?: ($order->plan?->name ?? ''),
$order->order_type,