feat: added dashboard for Lab Test Template

This commit is contained in:
Rucha Mahabal 2020-07-30 12:16:56 +05:30
parent 440c752529
commit ff0b9bffcf

View File

@ -0,0 +1,13 @@
from __future__ import unicode_literals
from frappe import _
def get_data():
return {
'fieldname': 'template',
'transactions': [
{
'label': _('Lab Tests'),
'items': ['Lab Test']
}
]
}