feat: dashboard for timesheet (#22750)

This commit is contained in:
Abhishek Balam 2020-07-21 12:54:59 +05:30 committed by GitHub
parent a13a0608b6
commit a5b83e85c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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']
}
]
}