updateTicket.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Console\Commands;
  3. use App\Models\TicketReply;
  4. use App\Models\User;
  5. use Illuminate\Console\Command;
  6. use Log;
  7. class updateTicket extends Command {
  8. protected $signature = 'updateTicket';
  9. protected $description = '更新工单';
  10. public function handle(): void {
  11. Log::info('----------------------------【更新工单】开始----------------------------');
  12. // 获取管理员
  13. $adminList = User::query()->whereIsAdmin(1)->get();
  14. foreach($adminList as $admin){
  15. Log::info('----------------------------【更新管理员'.$admin->id.'回复工单】开始----------------------------');
  16. // 获取该管理回复过的工单
  17. $replyList = TicketReply::query()->whereUserId($admin->id)->get();
  18. // 更新工单
  19. foreach($replyList as $reply){
  20. $ret = TicketReply::query()->whereId($reply->id)->update(['user_id' => 0, 'admin_id' => $admin->id]);
  21. if($ret){
  22. Log::info('--- 管理员:'.$admin->email.'回复子单ID:'.$reply->id.' ---');
  23. }else{
  24. Log::error('更新回复子单ID:【'.$reply->id.'】 失败!');
  25. }
  26. }
  27. Log::info('----------------------------【更新管理员'.$admin->id.'回复工单】完成----------------------------');
  28. }
  29. Log::info('----------------------------【更新工单】结束----------------------------');
  30. }
  31. }