33 lines
645 B
JavaScript
33 lines
645 B
JavaScript
|
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
||
|
// For license information, please see license.txt
|
||
|
/* eslint-disable */
|
||
|
|
||
|
frappe.query_reports["Profitability"] = {
|
||
|
"filters": [
|
||
|
{
|
||
|
"fieldname": "start_date",
|
||
|
"label": __("Start Date"),
|
||
|
"fieldtype": "Date",
|
||
|
"reqd": 1
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "end_date",
|
||
|
"label": __("End Date"),
|
||
|
"fieldtype": "Date",
|
||
|
"reqd": 1
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "customer_name",
|
||
|
"label": __("Customer"),
|
||
|
"fieldtype": "Link",
|
||
|
"options": "Customer"
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "employee",
|
||
|
"label": __("Employee"),
|
||
|
"fieldtype": "Link",
|
||
|
"options": "Employee"
|
||
|
}
|
||
|
]
|
||
|
};
|