diff --git a/erpnext/healthcare/dashboard_chart_source/department_wise_patient_appointments/department_wise_patient_appointments.py b/erpnext/healthcare/dashboard_chart_source/department_wise_patient_appointments/department_wise_patient_appointments.py
index 3cd987b8b4e..ae3f340b1d6 100644
--- a/erpnext/healthcare/dashboard_chart_source/department_wise_patient_appointments/department_wise_patient_appointments.py
+++ b/erpnext/healthcare/dashboard_chart_source/department_wise_patient_appointments/department_wise_patient_appointments.py
@@ -16,7 +16,6 @@ def get(chart_name = None, chart = None, no_cache = None, filters = None, from_d
else:
chart = frappe._dict(frappe.parse_json(chart))
- labels, datapoints = [], []
filters = frappe.parse_json(filters)
data = frappe.db.get_list('Medical Department', fields=['name'])
@@ -33,7 +32,7 @@ def get(chart_name = None, chart = None, no_cache = None, filters = None, from_d
department[frappe.scrub(entry)] = frappe.db.count('Patient Appointment', filters=filters)
filters.pop('status')
- sorted_department_map = sorted(data, key = lambda i: i['total_appointments'],reverse=True)
+ sorted_department_map = sorted(data, key = lambda i: i['total_appointments'], reverse=True)
if len(sorted_department_map) > 10:
sorted_department_map = sorted_department_map[:10]
diff --git a/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js b/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js
index 3f3d606ef81..16d4540c7c5 100644
--- a/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js
+++ b/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js
@@ -168,8 +168,8 @@ frappe.tour['Clinical Procedure Template'] = [
},
{
fieldname: 'consume_stock',
- title: __('Consume Stock'),
- description: __('Check this if the Clinical Procedure utilises consumables. Click ') + "here" + __(' to know more')
+ title: __('Allow Stock Consumption'),
+ description: __('Check this if the Clinical Procedure utilises consumables. Click ') + "here" + __(' to know more')
},
{
diff --git a/erpnext/healthcare/doctype/healthcare_settings/healthcare_settings.js b/erpnext/healthcare/doctype/healthcare_settings/healthcare_settings.js
index 310ba2e5108..c266ba86477 100644
--- a/erpnext/healthcare/doctype/healthcare_settings/healthcare_settings.js
+++ b/erpnext/healthcare/doctype/healthcare_settings/healthcare_settings.js
@@ -59,7 +59,7 @@ frappe.tour['Healthcare Settings'] = [
{
fieldname: 'healthcare_service_items',
title: __('Healthcare Service Items'),
- description: __('Set up the Healthcare Service Items for billing. Click ') + "here" + __(' to know more')
+ description: __('Set up the Healthcare Service Items for billing. Click ') + "here" + __(' to know more')
},
{
fieldname: 'sb_in_ac',
@@ -70,6 +70,6 @@ frappe.tour['Healthcare Settings'] = [
{
fieldname: 'out_patient_sms_alerts',
title: __('Out Patient SMS alerts'),
- description: __('You can set up Out Patient SMS alerts here. Click ') + "here" + __(' to know more')
+ description: __('You can set up Out Patient SMS alerts here. Click ') + "here" + __(' to know more')
}
];