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