dev
All checks were successful
Deploy to Production / deploy (push) Successful in 15s

This commit is contained in:
珂珂 2024-12-07 16:46:46 +08:00
parent 4846ac5cbb
commit 7413d760dc
2 changed files with 18 additions and 2 deletions

View File

@ -47,8 +47,8 @@ public function download($promote_page_id)
$bizParams['page_no'] = 1; $bizParams['page_no'] = 1;
$bizParams['page_size'] = 1000; $bizParams['page_size'] = 1000;
$bizParams['promote_page_id'] = $promote_page_id; $bizParams['promote_page_id'] = $promote_page_id;
// $bizParams['start_date'] = Carbon::now()->subDays(2)->format('Y-m-d'); $bizParams['start_date'] = Carbon::now()->subDays(2)->format('Y-m-d');
$bizParams['start_date'] = '2024-11-14'; // $bizParams['start_date'] = '2024-11-14';
$bizParams['end_date'] = Carbon::now()->format('Y-m-d'); $bizParams['end_date'] = Carbon::now()->format('Y-m-d');
$message = sprintf('===== 开始同步推广页留资数据:[页面ID] %s [开始日期] %s [结束日期] %s', $promote_page_id, $bizParams['start_date'], $bizParams['end_date']); $message = sprintf('===== 开始同步推广页留资数据:[页面ID] %s [开始日期] %s [结束日期] %s', $promote_page_id, $bizParams['start_date'], $bizParams['end_date']);

View File

@ -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() public function action_mail_test()
{ {
$users = Contact::query()->get(); $users = Contact::query()->get();