You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							61 lines
						
					
					
						
							2.3 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							61 lines
						
					
					
						
							2.3 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) | |
| # | |
| #    You can modify it under the terms of the GNU LESSER | |
| #    GENERAL PUBLIC LICENSE (LGPL v3), Version 3. | |
| # | |
| #    This program is distributed in the hope that it will be useful, | |
| #    but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | |
| #    GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. | |
| # | |
| #    You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE | |
| #    (LGPL v3) along with this program. | |
| #    If not, see <http://www.gnu.org/licenses/>. | |
| # | |
| ############################################################################# | |
| 
 | |
| { | |
|     'name': 'Advanced Sales Reports', | |
|     'version': '16.0.1.0.1', | |
|     'summary': 'Advanced sales reports for Odoo 15', | |
|     'description': """module helps you to print reports like Sales Analysis, Sales By Category, | |
|                         Sales Indent, Sales Invoice ,Product Profit ,Hourly Sales in PDF and XLSX format.""", | |
|     'author': 'Cybrosys Techno Solutions', | |
|     'company': 'Cybrosys Techno Solutions', | |
|     'maintainer': 'Cybrosys Techno Solutions', | |
|     'category': 'Sales', | |
|     'website': 'https://www.cybrosys.com', | |
|     'depends': ['sale_management', 'base','account'], | |
|     'data': [ | |
|         'security/ir.model.access.csv', | |
|         'wizard/sale_report.xml', | |
|         'wizard/sale_invoice.xml', | |
|         'wizard/sale_analysis.xml', | |
|         'wizard/weekly_wise.xml', | |
|         'wizard/sale_category.xml', | |
|         'wizard/sale_indent.xml', | |
|         'views/report_view.xml', | |
|         'report/sale_reports.xml', | |
|         'report/invoice_analysis_template.xml', | |
|         'report/sales_indent_template.xml', | |
|         'report/sale_profit_template.xml', | |
|         'report/sales_category_template.xml', | |
|         'report/sales_analysis_template.xml', | |
|         'report/sales_weekly_template.xml', | |
|     ], | |
|     'images': ['static/description/banner.png'], | |
|     'installable': True, | |
|     'application': True, | |
|     'license': 'LGPL-3', | |
|     'assets': { | |
|         'web.assets_backend': [ | |
|             'sale_report_advanced/static/src/js/action_manager.js', | |
|         ], | |
|     }, | |
| }
 | |
| 
 |