45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
| # -*- encoding: utf-8 -*-
 | |
| ###########################################################################
 | |
| #
 | |
| #    Copyright (C) 2016 - Today Turkesh Patel. <http://www.almightycs.com>
 | |
| #
 | |
| #    @author Turkesh Patel <info@almightycs.com>
 | |
| ###########################################################################
 | |
| 
 | |
| {
 | |
|     'name': 'Sale, Purchase and Invoice Global Discounts',
 | |
|     'category': 'Accounting',
 | |
|     'version': '1.0',
 | |
|     'author' : 'Almighty Consulting Services',
 | |
|     'support': 'info@almightycs.com',
 | |
|     'website' : 'http://www.almightycs.com',
 | |
|     'summary': """Apply Global Discounts on Sale, Purchase Orders and Invoice based on fixed amounts and percentage""",
 | |
|     'description': """Apply Global Discounts on Sale, Purchase Orders and Invoice based on fixed amounts and percentage.
 | |
|     Global Discounts
 | |
|     Global Discount
 | |
|     Fixed Amount Discount
 | |
|     Discount on Total
 | |
|     Discount in Purchase
 | |
|     Discount in Invoice
 | |
|     Discount in Sale
 | |
|     Global Discount in Purchase
 | |
|     Global Discount in Invoice
 | |
|     Global Discount in Sale""",
 | |
|     'depends': ['purchase','sale_management','account'],
 | |
|     'data': [
 | |
|         'views/purchase_view.xml',
 | |
|         'views/sale_view.xml',
 | |
|         'views/invoice_view.xml',
 | |
|         'views/res_config_view.xml',
 | |
|     ],
 | |
|     'images': [
 | |
|         'static/description/discount_cover_almightycs_turkesh.png',
 | |
|     ],
 | |
|     'installable': True,
 | |
|     'auto_install': False,
 | |
|     'price': 35,
 | |
|     'currency': 'EUR',
 | |
| }
 | |
| 
 | |
| # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 |