2020-05-04 14:46:56 +00:00
|
|
|
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
|
|
// For license information, please see license.txt
|
|
|
|
/* eslint-disable */
|
|
|
|
|
|
|
|
frappe.query_reports["Project Summary"] = {
|
|
|
|
"filters": [
|
|
|
|
{
|
|
|
|
"fieldname": "company",
|
|
|
|
"label": __("Company"),
|
|
|
|
"fieldtype": "Link",
|
|
|
|
"options": "Company",
|
|
|
|
"default": frappe.defaults.get_user_default("Company"),
|
|
|
|
"reqd": 1
|
|
|
|
},
|
2020-05-27 06:23:48 +00:00
|
|
|
{
|
|
|
|
"fieldname": "is_active",
|
|
|
|
"label": __("Is Active"),
|
|
|
|
"fieldtype": "Select",
|
|
|
|
"options": "\nYes\nNo",
|
|
|
|
"default": "Yes",
|
|
|
|
},
|
2020-05-04 14:46:56 +00:00
|
|
|
{
|
|
|
|
"fieldname": "status",
|
|
|
|
"label": __("Status"),
|
|
|
|
"fieldtype": "Select",
|
2020-05-27 06:23:48 +00:00
|
|
|
"options": "\nOpen\nCompleted\nCancelled",
|
2020-05-04 14:46:56 +00:00
|
|
|
"default": "Open"
|
2020-05-27 06:23:48 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname": "project_type",
|
|
|
|
"label": __("Project Type"),
|
|
|
|
"fieldtype": "Link",
|
|
|
|
"options": "Project Type"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname": "priority",
|
|
|
|
"label": __("Priority"),
|
|
|
|
"fieldtype": "Select",
|
|
|
|
"options": "\nLow\nMedium\nHigh"
|
2020-05-04 14:46:56 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|