dev
All checks were successful
Deploy to Production / deploy (push) Successful in 15s

This commit is contained in:
珂珂 2024-12-09 15:08:52 +08:00
parent 6a58b40596
commit 6bb2dcff97

View File

@ -31,7 +31,7 @@ public function action_data_fix()
{ {
$source = ['alipromote:108600010', 'alipromote:108600017']; $source = ['alipromote:108600010', 'alipromote:108600017'];
$items = Testdrive::query()->whereIn('source', $source)->get(); $items = Testdrive::query()->whereIn('source', $source)->get();
foreach($items as $item) { foreach ($items as $item) {
$propertyList = $item->rawdata['property_list']; $propertyList = $item->rawdata['property_list'];
$name = collect($propertyList)->firstWhere('key', '姓名'); $name = collect($propertyList)->firstWhere('key', '姓名');
$item->name = $name['value'] ?? ''; $item->name = $name['value'] ?? '';
@ -107,31 +107,40 @@ public function action_push2contact()
->pluck('mobile') ->pluck('mobile')
->toArray(); ->toArray();
// 需要发送的试驾数据 // // 需要发送的试驾数据
$items = Testdrive::query() // $items = Testdrive::query()
// ->whereNotNull('source')
// ->where('status', Testdrive::STATUS_DRAFT)
// ->orderBy('id')
// ->get();
$num = $this->ask('ID 正序取出', 100);
$items1 = Testdrive::query()
->whereNotNull('source') ->whereNotNull('source')
->where('status', Testdrive::STATUS_DRAFT) ->where('status', Testdrive::STATUS_DRAFT)
->orderBy('id') ->orderBy('id')
->take($num)
->get(); ->get();
$num = $this->ask('ID 倒叙取出', 100);
$items2 = Testdrive::query()
->whereNotNull('source')
->where('status', Testdrive::STATUS_DRAFT)
->orderBy('id', 'desc')
->take($num)
->get();
$items = $items1->merge($items2);
// 根据手机号码去除重 // 根据手机号码去除重
$items = $items->unique('mobile'); $items = $items->unique('mobile');
// 根据已发送的手机号码去重 // 根据已发送的手机号码去重
$items = $items->filter(function ($item) use ($sendItems) { $items = $items->filter(fn($item) => !in_array($item->mobile, $sendItems));
return !in_array($item->mobile, $sendItems);
});
$items = $items->sortBy('id')->take(80); $confirm = $this->confirm("共有 {$items->count()} 条数据(已去重),是否继续?");
$confirm = $this->confirm("共有 {$items->count()} 条数据,是否继续?");
if (!$confirm) return Command::SUCCESS; if (!$confirm) return Command::SUCCESS;
// 联系人 // 联系人
$contacts = Contact::query() $contacts = Contact::query()->where('status', Contact::STATUS_PUBLISHED)->orderBy('id')->get();
->where('status', Contact::STATUS_PUBLISHED)
->orderBy('id')
->get();
$count = $contacts->count(); $count = $contacts->count();
$offset = cache()->get('push2contact:offset', 0); $offset = cache()->get('push2contact:offset', 0);