feat: dashboard for timesheet (#22750)
diff --git a/erpnext/projects/doctype/timesheet/timesheet_dashboard.py b/erpnext/projects/doctype/timesheet/timesheet_dashboard.py
new file mode 100644
index 0000000..acff97a
--- /dev/null
+++ b/erpnext/projects/doctype/timesheet/timesheet_dashboard.py
@@ -0,0 +1,13 @@
+from __future__ import unicode_literals
+from frappe import _
+
+def get_data():
+ return {
+ 'fieldname': 'time_sheet',
+ 'transactions': [
+ {
+ 'label': _('References'),
+ 'items': ['Sales Invoice', 'Salary Slip']
+ }
+ ]
+ }
\ No newline at end of file