feat: add dashboards to Healthcare Masters
This commit is contained in:
parent
0a35b2207e
commit
b010988033
@ -9,7 +9,11 @@ def get_data():
|
|||||||
'transactions': [
|
'transactions': [
|
||||||
{
|
{
|
||||||
'label': _('Appointments and Patient Encounters'),
|
'label': _('Appointments and Patient Encounters'),
|
||||||
'items': ['Patient Appointment', 'Patient Encounter']
|
'items': ['Patient Appointment', 'Patient Encounter', 'Fee Validity']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': _('Consultation'),
|
||||||
|
'items': ['Clinical Procedure', 'Lab Test']
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -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']
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user