add message

This commit is contained in:
baoliang 2020-11-19 00:34:52 +08:00
parent a240ba852b
commit 0e280c2272
1 changed files with 1 additions and 3 deletions

View File

@ -15,15 +15,13 @@ def process_notify_task():
now = datetime.now()
if two_hours_later < now:
phone = n.user.username
print(phone)
today = now.date()
hour = now.hour
exists = SMSNotifyRecord.objects.filter(
phone=phone, added=today, notice_id=n.id).exists()
print(exists)
if exists:
break
if hour < 8 or hour > 24:
if hour < 8 or hour > 20:
break
print('============', phone, n.type, n.id)
SMSNotifyRecord.objects.create(phone=phone, notice_id=n.id)