-
Notifications
You must be signed in to change notification settings - Fork 696
feat: add agent landing page #2796
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
helpdesk/api/agent_dashboard.py
Outdated
| todo = DocType("ToDo") | ||
| assigned_tickets = ( | ||
| frappe.qb.from_(todo) | ||
| .select(todo.reference_name) | ||
| .distinct() | ||
| .where(todo.reference_type == "HD Ticket") | ||
| .where(todo.allocated_to == frappe.session.user) | ||
| .where(todo.creation >= one_week_ago) | ||
| .run(as_dict=False) | ||
| ) | ||
| ticket_names = [row[0] for row in assigned_tickets] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will get Cancelled todos as well
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## develop #2796 +/- ##
===========================================
+ Coverage 49.67% 53.46% +3.78%
===========================================
Files 124 128 +4
Lines 5401 5952 +551
===========================================
+ Hits 2683 3182 +499
- Misses 2718 2770 +52 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Description
This PR introduces a dedicated Agent Dashboard (Home Page) designed to provide agents with a centralized view of their workload and performance metrics immediately upon logging in.
To improve the user experience, the dashboard is fully customizable, allowing agents to organize their workspace according to their specific needs.
Key Features
These are the available charts in the dashboard
Opencategory stateChangelog
HD Field Layoutdoctype to store user-specific dashboard layouts2025-12-04.17-06-37.mp4