From b733984ca1e4f31417bb27ae78f050a2053b9d42 Mon Sep 17 00:00:00 2001 From: John Clarke Date: Thu, 4 Apr 2019 23:32:25 -0600 Subject: [PATCH] fix: Remove duplicate Timesheet item (#17066) --- erpnext/hooks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 2fac23205c..608e8b2225 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -152,7 +152,6 @@ standard_portal_menu_items = [ {"title": _("Issues"), "route": "/issues", "reference_doctype": "Issue", "role":"Customer"}, {"title": _("Addresses"), "route": "/addresses", "reference_doctype": "Address"}, {"title": _("Timesheets"), "route": "/timesheets", "reference_doctype": "Timesheet", "role":"Customer"}, - {"title": _("Timesheets"), "route": "/timesheets", "reference_doctype": "Timesheet", "role":"Customer"}, {"title": _("Lab Test"), "route": "/lab-test", "reference_doctype": "Lab Test", "role":"Patient"}, {"title": _("Prescription"), "route": "/prescription", "reference_doctype": "Patient Encounter", "role":"Patient"}, {"title": _("Patient Appointment"), "route": "/patient-appointments", "reference_doctype": "Patient Appointment", "role":"Patient"}, @@ -332,4 +331,4 @@ user_privacy_documents = [ 'match_field': 'contact_email', 'personal_fields': ['contact_mobile', 'contact_display', 'customer_name'], } -] \ No newline at end of file +]