feat: add dashboards to Healthcare Masters

This commit is contained in:
Rucha Mahabal 2020-02-02 23:22:02 +05:30
parent 0a35b2207e
commit b010988033
2 changed files with 18 additions and 1 deletions

View File

@ -9,7 +9,11 @@ def get_data():
'transactions': [
{
'label': _('Appointments and Patient Encounters'),
'items': ['Patient Appointment', 'Patient Encounter']
'items': ['Patient Appointment', 'Patient Encounter', 'Fee Validity']
},
{
'label': _('Consultation'),
'items': ['Clinical Procedure', 'Lab Test']
}
]
}

View File

@ -0,0 +1,13 @@
from __future__ import unicode_literals
from frappe import _
def get_data():
return {
'fieldname': 'service_unit_type',
'transactions': [
{
'label': _('Healthcare Service Units'),
'items': ['Healthcare Service Unit']
},
]
}