dev-1118-1706
All checks were successful
Deploy to Production / deploy (push) Successful in 24s

This commit is contained in:
珂珂 2024-11-18 17:06:55 +08:00
parent 7b78c9328e
commit 79e6967250
2 changed files with 14 additions and 5 deletions

View File

@ -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],

View File

@ -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)