This commit is contained in:
parent
7b78c9328e
commit
79e6967250
@ -82,15 +82,21 @@ public function action_push2contact()
|
||||
$item->update(['status' => Testdrive::STATUS_REJECTED]);
|
||||
continue;
|
||||
}
|
||||
$item->update(['status' => Testdrive::STATUS_PUBLISHED]);
|
||||
|
||||
$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;
|
||||
}
|
||||
// info("分配试驾数据 {$item->id} 给联系人 {$contact->id}");
|
||||
// $this->info("分配试驾数据 {$item->id} 给联系人 {$contact->id}");
|
||||
|
||||
Activity::create([
|
||||
'name' => '试驾通知',
|
||||
'content' => ['testdrive' => $item->id, 'contact' => $contact->id],
|
||||
|
@ -33,9 +33,12 @@ class Testdrive extends Model
|
||||
|
||||
protected $table = 'bydauto_testdrive';
|
||||
|
||||
protected $fillable = ['status', 'name', 'mobile', 'platform', 'source', 'meta', 'rawdata', 'request_id', 'external_id'];
|
||||
protected $fillable = [
|
||||
'status', 'name', 'mobile', 'platform', 'source', 'meta',
|
||||
'rawdata', 'request_id', 'external_id', 'contact_id', 'contact_info'
|
||||
];
|
||||
|
||||
protected $casts = ['meta' => 'json', 'rawdata' => 'json'];
|
||||
protected $casts = ['meta' => 'json', 'rawdata' => 'json', 'contact_info' => 'json'];
|
||||
|
||||
// 行业运SPI接口数据处理
|
||||
public static function isaas($data)
|
||||
|
Loading…
Reference in New Issue
Block a user