This commit is contained in:
parent
4846ac5cbb
commit
7413d760dc
@ -47,8 +47,8 @@ public function download($promote_page_id)
|
||||
$bizParams['page_no'] = 1;
|
||||
$bizParams['page_size'] = 1000;
|
||||
$bizParams['promote_page_id'] = $promote_page_id;
|
||||
// $bizParams['start_date'] = Carbon::now()->subDays(2)->format('Y-m-d');
|
||||
$bizParams['start_date'] = '2024-11-14';
|
||||
$bizParams['start_date'] = Carbon::now()->subDays(2)->format('Y-m-d');
|
||||
// $bizParams['start_date'] = '2024-11-14';
|
||||
$bizParams['end_date'] = Carbon::now()->format('Y-m-d');
|
||||
|
||||
$message = sprintf('===== 开始同步推广页留资数据:[页面ID] %s [开始日期] %s [结束日期] %s', $promote_page_id, $bizParams['start_date'], $bizParams['end_date']);
|
||||
|
@ -27,6 +27,22 @@ public function handle()
|
||||
}
|
||||
}
|
||||
|
||||
public function action_data_fix()
|
||||
{
|
||||
$source = ['alipromote:108600010', 'alipromote:108600017'];
|
||||
$items = Testdrive::query()->whereIn('source', $source)->get();
|
||||
foreach($items as $item) {
|
||||
$propertyList = $item->rawdata['property_list'];
|
||||
$name = collect($propertyList)->firstWhere('key', '姓名');
|
||||
$item->name = $name['value'] ?? '';
|
||||
$mobile = collect($propertyList)->firstWhere('key', '手机号');
|
||||
$item->mobile = $mobile['value'] ?? '';
|
||||
$item->save();
|
||||
}
|
||||
$this->info('Data fix done');
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
public function action_mail_test()
|
||||
{
|
||||
$users = Contact::query()->get();
|
||||
|
Loading…
Reference in New Issue
Block a user