fix(minor): Employee filter in Unpaid Expense Claims report (#27530)

This commit is contained in:
Rucha Mahabal 2021-09-16 00:05:16 +05:30 committed by GitHub
parent e6a1ad8016
commit 866763c16a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,9 +4,10 @@
frappe.query_reports["Unpaid Expense Claim"] = {
"filters": [
{
"fieldname":"employee",
"fieldname": "employee",
"label": __("Employee"),
"fieldtype": "Link"
"fieldtype": "Link",
"options": "Employee"
}
]
}