29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
# -*- encoding: utf-8 -*-
 | 
						|
###########################################################################
 | 
						|
#
 | 
						|
#    Copyright (C) 2016 - Today Turkesh Patel. <http://www.almightycs.com>
 | 
						|
#
 | 
						|
#    @author Turkesh Patel <info@almightycs.com>
 | 
						|
###########################################################################
 | 
						|
 | 
						|
{
 | 
						|
    'name': 'Sale and Invoice Dealer Discounts',
 | 
						|
    'category': 'Accounting',
 | 
						|
    'version': '1.0',
 | 
						|
    'author' : 'TZAustria, derived from Almighty Consulting Services',
 | 
						|
    'support': 'andreas.osim@glaser-co.at',
 | 
						|
    'website': 'https://www.tzaustria.at',
 | 
						|
    'summary': """Apply Dealer Discounts on Sale Orders and Invoice based on fixed amounts and percentage, BUT NOT for special products (based on material_type)""",
 | 
						|
    'description': """Apply Dealer Discounts on Sale Orders and Invoice based on fixed amounts and percentage, BUT NOT for special products (based on material_type)""",
 | 
						|
    'depends': ['purchase','sale_management','account'],
 | 
						|
    'data': [
 | 
						|
        'views/sale_view.xml',
 | 
						|
        'views/invoice_view.xml',
 | 
						|
        'views/res_config_view.xml',
 | 
						|
    ],
 | 
						|
    'installable': True,
 | 
						|
    'auto_install': False,
 | 
						|
}
 | 
						|
 | 
						|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 |