From 7ae844f0a02a98799aef598f5edd3c0a5016842b Mon Sep 17 00:00:00 2001 From: Valmik Jangla Date: Wed, 17 Feb 2016 15:06:30 +0530 Subject: [PATCH] Minor fix --- .../report/monthly_attendance_sheet/monthly_attendance_sheet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py b/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py index 68914ea2d3..fe11406b30 100644 --- a/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +++ b/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py @@ -95,7 +95,7 @@ def get_conditions(filters): def get_employee_details(): emp_map = frappe._dict() for d in frappe.db.sql("""select name, employee_name, designation, - department, branch, company, status + department, branch, company from tabEmployee""", as_dict=1): emp_map.setdefault(d.name, d)