42 lines
873 B
JavaScript
42 lines
873 B
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
|
|
frappe.query_reports["Project Summary"] = {
|
|
filters: [
|
|
{
|
|
fieldname: "company",
|
|
label: __("Company"),
|
|
fieldtype: "Link",
|
|
options: "Company",
|
|
default: frappe.defaults.get_user_default("Company"),
|
|
reqd: 1,
|
|
},
|
|
{
|
|
fieldname: "is_active",
|
|
label: __("Is Active"),
|
|
fieldtype: "Select",
|
|
options: "\nYes\nNo",
|
|
default: "Yes",
|
|
},
|
|
{
|
|
fieldname: "status",
|
|
label: __("Status"),
|
|
fieldtype: "Select",
|
|
options: "\nOpen\nCompleted\nCancelled",
|
|
default: "Open",
|
|
},
|
|
{
|
|
fieldname: "project_type",
|
|
label: __("Project Type"),
|
|
fieldtype: "Link",
|
|
options: "Project Type",
|
|
},
|
|
{
|
|
fieldname: "priority",
|
|
label: __("Priority"),
|
|
fieldtype: "Select",
|
|
options: "\nLow\nMedium\nHigh",
|
|
},
|
|
],
|
|
};
|