24 lines
		
	
	
		
			541 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			541 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // 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
 | |
| 		},
 | |
| 		{
 | |
| 			"fieldname": "status",
 | |
| 			"label": __("Status"),
 | |
| 			"fieldtype": "Select",
 | |
| 			"options": "Open\nComplete\nCancelled",
 | |
| 			"default": "Open"
 | |
| 		}
 | |
| 	]
 | |
| };
 |