Skip to content

Instantly share code, notes, and snippets.

@itsyosefali
Created January 7, 2023 10:03
Show Gist options
  • Select an option

  • Save itsyosefali/93ba79a9a1b0c80e1743f75e7419e6c9 to your computer and use it in GitHub Desktop.

Select an option

Save itsyosefali/93ba79a9a1b0c80e1743f75e7419e6c9 to your computer and use it in GitHub Desktop.
frappe.query_reports["Gl Entry Report"] = {
"filters": [
{
"fieldname":"account",
"label": __("Account"),
"fieldtype": "Link",
"options": "Account",
"reqd": 1,
"width": "80",
get_query: function() {
return {
filters: [
["name", "in", ["1110 - البطاقة المصرفية - ACFCO" ]]
]
}
}
},
{
"fieldname":"date_from",
"label": __("From Date"),
"fieldtype": "Date",
"width": "80"
},
{
"fieldname":"date_to",
"label": __("To Date"),
"fieldtype": "Date",
"width": "80"
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment