brotherton-erpnext/erpnext/selling/report/inactive_customers/inactive_customers.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
477 B
JavaScript
Raw Normal View History

2016-03-08 12:36:21 +00:00
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
// For license information, please see license.txt
2016-03-08 12:36:21 +00:00
frappe.query_reports["Inactive Customers"] = {
"filters": [
{
"fieldname":"days_since_last_order",
2014-04-14 10:55:30 +00:00
"label": __("Days Since Last Order"),
"fieldtype": "Int",
"default": 60
},
{
"fieldname":"doctype",
"label": __("Doctype"),
"fieldtype": "Select",
"default": "Sales Order",
"options": "Sales Order\nSales Invoice"
}
]
2016-03-08 12:36:21 +00:00
}