23 lines
		
	
	
		
			630 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			630 B
		
	
	
	
		
			Python
		
	
	
# Copyright 2018-Today datenpol gmbh(<http://www.datenpol.at>)
 | 
						|
# License OPL-1 or later (https://www.odoo.com/documentation/user/11.0/legal/licenses/licenses.html#licenses).
 | 
						|
 | 
						|
 | 
						|
# noinspection PyStatementEffect
 | 
						|
{
 | 
						|
    'name': 'Dp Sale Delivery Date',
 | 
						|
    'summary' : 'Shows the delivery date in the sale order',
 | 
						|
    'version': '11.0.1.0.0',
 | 
						|
    'license': 'OPL-1',
 | 
						|
    'author': 'datenpol gmbh',
 | 
						|
    'support': 'office@datenpol.at',
 | 
						|
    'website': 'https://www.datenpol.at',
 | 
						|
    'depends': [
 | 
						|
        'sale_stock',
 | 
						|
    ],
 | 
						|
    'data': [
 | 
						|
        'views/sale_order_line.xml',
 | 
						|
    ],
 | 
						|
    'installable': True,
 | 
						|
    'auto_install': False,
 | 
						|
}
 |