From 4334f3e73d024a17e8d39c477fa4fce9f2b98ef2 Mon Sep 17 00:00:00 2001 From: Truong Vo <41848815+vmtruong301296@users.noreply.github.com> Date: Wed, 16 Oct 2024 09:44:29 +0700 Subject: [PATCH] =?UTF-8?q?B=E1=BB=95=20sung=20check=20=C4=91i=E1=BB=81u?= =?UTF-8?q?=20ki=E1=BB=87n=20c=C3=B3=20user=20check=20in=20check=20out=20(?= =?UTF-8?q?ng=C3=A0y=20h=E1=BB=A3p=20l=E1=BB=87)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BACKEND/app/Jobs/CheckUserAttendanceJob.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/BACKEND/app/Jobs/CheckUserAttendanceJob.php b/BACKEND/app/Jobs/CheckUserAttendanceJob.php index 1bf9fa0..5dc3e21 100644 --- a/BACKEND/app/Jobs/CheckUserAttendanceJob.php +++ b/BACKEND/app/Jobs/CheckUserAttendanceJob.php @@ -125,8 +125,15 @@ class CheckUserAttendanceJob implements ShouldQueue $type = 'ONLEAVE'; $reason = 'KHONG PHEP'; + + //Check ngày hợp lệ nếu có check và check out của user khác + $dateNow = Tracking::whereBetween('time_string', [$startTime, $endTime]) + ->get(); + $hasCheckIndateNow = $dateNow->where('status', 'check in')->isNotEmpty(); + $hasCheckOutdateNow = $dateNow->where('status', 'check out')->isNotEmpty(); + // Nếu không có check-in hoặc check-out, và chưa có ticket, tạo ticket mới - if (!$hasCheckIn && !$hasCheckOut && !$existingTicket) { + if (($hasCheckIndateNow && $hasCheckOutdateNow) && !$hasCheckIn && !$hasCheckOut && !$existingTicket) { Ticket::create([ 'user_id' => $userId, 'start_date' => $today->format('Y-m-d'),