mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-18 09:47:14 +00:00
feat: add dashboards to Healthcare Masters
This commit is contained in:
@@ -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']
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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']
|
||||
},
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user