seitime-frappe/frappe/core/notifications.py
Gavin D'souza 6fdbbb70ce fix(get_events): Pass date objects instead of string
Closes https://github.com/frappe/frappe/issues/32246

(cherry picked from commit a4590fa4cc09b44c444e10f212f31fc26f4f81aa)
2025-04-22 22:43:50 +00:00

44 lines
1.1 KiB
Python

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
import frappe
def get_notification_config():
return {
"for_doctype": {
"Error Log": {"seen": 0},
"Communication": {"status": "Open", "communication_type": "Communication"},
"ToDo": "frappe.core.notifications.get_things_todo",
"Event": "frappe.core.notifications.get_todays_events",
"Workflow Action": {"status": "Open"},
},
}
def get_things_todo(as_list=False):
"""Return a count of incomplete ToDos."""
data = frappe.get_list(
"ToDo",
fields=["name", "description"] if as_list else "count(*)",
filters=[["ToDo", "status", "=", "Open"]],
or_filters=[
["ToDo", "allocated_to", "=", frappe.session.user],
["ToDo", "assigned_by", "=", frappe.session.user],
],
as_list=True,
)
if as_list:
return data
return data[0][0]
def get_todays_events(as_list: bool = False):
"""Return a count of today's events in calendar."""
from frappe.desk.doctype.event.event import get_events
from frappe.utils import getdate
today = getdate()
events = get_events(today, today)
return events if as_list else len(events)