add push_missing
All checks were successful
Deploy to Production / deploy (push) Successful in 25s

This commit is contained in:
珂珂 2024-11-29 14:36:32 +08:00
parent e3b16ff4bb
commit 40f2366c9d
2 changed files with 47 additions and 2 deletions

View File

@ -45,6 +45,49 @@ public function action_init()
$this->call('migrate'); $this->call('migrate');
} }
// 漏发试驾数据
public function action_push_missing()
{
$items = Testdrive::query()
->where('date_updated', '>', '2024-11-21 09:06:00')
->get();
$contacts = Contact::query()
->where('status', Contact::STATUS_PUBLISHED)
->orderBy('id')
->get();
$count = $contacts->count();
$offset = cache()->get('push2contact:offset', 0);
$sendList = [];
foreach ($items as $item) {
if ($this->isDirtyName($item->name)) {
info("试驾数据 {$item->id} 姓名异常 {$item->name}");
$this->info("试驾数据 {$item->id} 姓名异常 {$item->name}");
$item->update(['status' => Testdrive::STATUS_REJECTED]);
continue;
}
$contact = $contacts[$offset];
// $item->update(['status' => Testdrive::STATUS_PUBLISHED, 'contact_id' => $contact->id, 'contact_info' => $contact->toArray()]);
if (!isset($sendList[$contact->id])) {
$sendList[$contact->id] = [$item];
} else {
$sendList[$contact->id][] = $item;
}
$offset = ($offset + 1) % $count;
}
cache()->forever('push2contact:offset', $offset);
// 开始发送
foreach ($sendList as $contactId => $items) {
$contact = $contacts->firstWhere('id', $contactId);
$this->info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
// $contact->notify(new TestdirveNotification($items));
}
return Command::SUCCESS;
}
// 同步试驾数据给到经销商联系人 按顺序每个联系人分配一个试驾数据 // 同步试驾数据给到经销商联系人 按顺序每个联系人分配一个试驾数据
public function action_push2contact() public function action_push2contact()
{ {
@ -115,7 +158,7 @@ public function action_push2contact()
$contact = $contacts->firstWhere('id', $contactId); $contact = $contacts->firstWhere('id', $contactId);
$this->info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items)); $this->info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items)); info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
// $contact->notify(new TestdirveNotification($items)); $contact->notify(new TestdirveNotification($items));
} }
return Command::SUCCESS; return Command::SUCCESS;
} }

View File

@ -15,7 +15,9 @@
*/ */
class Activity extends Model class Activity extends Model
{ {
public $timestamps = false; public const CREATED_AT = 'date_created';
public const UPDATED_AT = 'date_updated';
protected $table = 'bydauto_activity'; protected $table = 'bydauto_activity';