From 2e4923262aad6d4feb9365c9942cc36d97f0ab18 Mon Sep 17 00:00:00 2001 From: Afiq Hamzah Date: Mon, 23 Sep 2024 11:59:01 +0800 Subject: [PATCH] Fix komoditi notification sends notification day not in business --- app/Jobs/WhatsappUnsoldCommodityNotification.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Jobs/WhatsappUnsoldCommodityNotification.php b/app/Jobs/WhatsappUnsoldCommodityNotification.php index 01a698b..b8576e7 100644 --- a/app/Jobs/WhatsappUnsoldCommodityNotification.php +++ b/app/Jobs/WhatsappUnsoldCommodityNotification.php @@ -85,6 +85,11 @@ class WhatsappUnsoldCommodityNotification extends Job $logger->info('End time is in the past'); return false; } + + if (! $isLatestKomoditiToday) { + $logger->info('No commodity is bought today, so technically no komoditi is sold and notifications will not be sent'); + return false; + } if ($isLatestKomoditiToday && $isAllKomoditiSold) { $logger->info('All today komoditi is sold');