You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
3.6 KiB

6 months ago
<?php
namespace App\Console\Commands;
4 months ago
use App\Models\Course;
use App\Models\CourseSign;
6 months ago
use App\Models\User;
use App\Repositories\MeetRepository;
use Illuminate\Console\Command;
class UpdateUserNo extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'update_user_no';
/**
* The console command description.
*
* @var string
*/
2 weeks ago
protected $description = '批量更新学号/打元和同事标签';
6 months ago
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
2 weeks ago
// 1. 批量更新学号
$this->updateUserNo();
// 2. 给元和同事打标签
$this->tagYuanheColleague();
return $this->info('更新完成');
}
/**
* 批量更新学号
*/
protected function updateUserNo()
{
$this->info('开始更新学号...');
4 months ago
// 已经开始的课程日期(所有历史数据处理)
// $dateList = Course::whereNotNull('start_date')
// ->where('start_date', '<=', date('Y-m-d'))
// ->orderBy('start_date')
// ->groupBy('start_date')
// ->pluck('start_date')
// ->toArray();
4 months ago
// 当日数据处理(日常定时任务)
$dateList = [date('Y-m-d')];
4 months ago
foreach ($dateList as $date) {
2 weeks ago
$courses = Course::with([
'courseSigns' => function ($query) {
$query->where('status', 1);
}
])->where('start_date', $date)
->whereNotNull('student_prefix')
4 months ago
->orderBy('start_date')
->get();
$i = 1;
// 编号前缀
foreach ($courses as $course) {
foreach ($course->courseSigns as $sign) {
$user = User::find($sign->user_id);
if ($user->no) {
continue;
}
$no = $course->student_prefix . str_pad($i, 3, '0', STR_PAD_LEFT);
4 months ago
// 更新用户编号
$user->no = $no;
$user->save();
2 weeks ago
$this->info('学号: ' . $no);
4 months ago
$i++;
}
}
6 months ago
}
2 weeks ago
$this->info('学号更新完成');
}
/**
* 给元和同事打标签
*/
protected function tagYuanheColleague()
{
$this->info('开始给元和同事打标签...');
$tag = '元禾同事';
// 获取元和员工用户列表
5 days ago
$users = CourseSign::companyJoin(null, null, null, true, false);
2 weeks ago
$count = 0;
foreach ($users as $user) {
// 获取当前的 from 字段
$from = $user->from ?? '';
// 将 from 字段按逗号分隔成数组
$fromArray = array_filter(array_map('trim', explode(',', $from)));
// 检查是否已存在该标签
if (in_array($tag, $fromArray)) {
continue;
}
// 追加标签
$fromArray[] = $tag;
// 更新 from 字段
$user->from = implode(',', $fromArray);
$user->save();
$this->info('已为用户 ' . $user->name . '(' . $user->mobile . ') 添加标签: ' . $tag);
$count++;
}
$this->info('元和同事标签更新完成,共更新 ' . $count . ' 人');
6 months ago
}
}