feature:1.点歌功能,2.签到功能

This commit is contained in:
liuwei
2025-03-05 09:01:08 +08:00
parent 5ed4c94094
commit 9937115ad3
14 changed files with 524 additions and 200 deletions

View File

@@ -18,16 +18,16 @@ class ReportReminder:
today = datetime.datetime.now().date()
# 如果是非工作日
if not is_workday(today):
robot.sendTextMsg("休息日快乐", receiver)
robot.send_text_msg("休息日快乐", receiver)
# 如果是工作日
if is_workday(today):
robot.sendTextMsg("该发日报啦", receiver)
robot.send_text_msg("该发日报啦", receiver)
# 如果是本周最后一个工作日
if ReportReminder.last_work_day_of_week(today) == today:
robot.sendTextMsg("该发周报啦", receiver)
robot.send_text_msg("该发周报啦", receiver)
# 如果本日是本月最后一整周的最后一个工作日:
if ReportReminder.last_work_friday_of_month(today) == today:
robot.sendTextMsg("该发月报啦", receiver)
robot.send_text_msg("该发月报啦", receiver)
# 计算本月最后一个周的最后一个工作日
@staticmethod