This commit is contained in:
parent
be98f7cf85
commit
3793130ce5
@ -45,13 +45,25 @@ public function action_init()
|
|||||||
// 同步试驾数据给到经销商联系人 按顺序每个联系人分配一个试驾数据
|
// 同步试驾数据给到经销商联系人 按顺序每个联系人分配一个试驾数据
|
||||||
public function action_push2contact()
|
public function action_push2contact()
|
||||||
{
|
{
|
||||||
|
// 所有已发送的试驾数据
|
||||||
|
$sendItems = Testdrive::query()
|
||||||
|
->where('status', Testdrive::STATUS_PUBLISHED)
|
||||||
|
->pluck('mobile')
|
||||||
|
->toArray();
|
||||||
|
|
||||||
|
// 需要发送的试驾数据
|
||||||
$items = Testdrive::query()
|
$items = Testdrive::query()
|
||||||
->whereNotNull('source')
|
->whereNotNull('source')
|
||||||
->where('status', Testdrive::STATUS_DRAFT)
|
->where('status', Testdrive::STATUS_DRAFT)
|
||||||
->orderBy('id')
|
->orderBy('id')
|
||||||
->get();
|
->get();
|
||||||
$items = $items->unique('mobile');
|
|
||||||
|
|
||||||
|
// 根据手机号码去除重
|
||||||
|
$items = $items->filter(function ($item) use ($sendItems) {
|
||||||
|
return !in_array($item->mobile, $sendItems);
|
||||||
|
});
|
||||||
|
|
||||||
|
// 联系人
|
||||||
$contacts = Contact::query()
|
$contacts = Contact::query()
|
||||||
->where('status', Contact::STATUS_PUBLISHED)
|
->where('status', Contact::STATUS_PUBLISHED)
|
||||||
->orderBy('id')
|
->orderBy('id')
|
||||||
|
Loading…
Reference in New Issue
Block a user