mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 19:29:10 +00:00
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
/* eslint-disable */
|
|
|
|
frappe.query_reports["Lead Details"] = {
|
|
filters: [
|
|
{
|
|
fieldname: "company",
|
|
label: __("Company"),
|
|
fieldtype: "Link",
|
|
options: "Company",
|
|
default: frappe.defaults.get_user_default("Company"),
|
|
reqd: 1,
|
|
},
|
|
{
|
|
fieldname: "from_date",
|
|
label: __("From Date"),
|
|
fieldtype: "Date",
|
|
default: frappe.datetime.add_months(frappe.datetime.get_today(), -12),
|
|
reqd: 1,
|
|
},
|
|
{
|
|
fieldname: "to_date",
|
|
label: __("To Date"),
|
|
fieldtype: "Date",
|
|
default: frappe.datetime.get_today(),
|
|
reqd: 1,
|
|
},
|
|
{
|
|
fieldname: "status",
|
|
label: __("Status"),
|
|
fieldtype: "Select",
|
|
options: [
|
|
{ value: "Lead", label: __("Lead") },
|
|
{ value: "Open", label: __("Open") },
|
|
{ value: "Replied", label: __("Replied") },
|
|
{ value: "Opportunity", label: __("Opportunity") },
|
|
{ value: "Quotation", label: __("Quotation") },
|
|
{ value: "Lost Quotation", label: __("Lost Quotation") },
|
|
{ value: "Interested", label: __("Interested") },
|
|
{ value: "Converted", label: __("Converted") },
|
|
{ value: "Do Not Contact", label: __("Do Not Contact") },
|
|
],
|
|
},
|
|
{
|
|
fieldname: "territory",
|
|
label: __("Territory"),
|
|
fieldtype: "Link",
|
|
options: "Territory",
|
|
},
|
|
],
|
|
};
|