26 lines
		
	
	
		
			850 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			850 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Part of Odoo. See LICENSE file for full copyright and licensing details.
 | |
| {
 | |
|     'name' : 'Products Expiration Date',
 | |
|     'category' : 'Warehouse',
 | |
|     'depends' : ['stock'],
 | |
|     'demo' : ['data/product_expiry_demo.xml'],
 | |
|     'description': """
 | |
| Track different dates on products and production lots.
 | |
| ======================================================
 | |
| 
 | |
| Following dates can be tracked:
 | |
| -------------------------------
 | |
|     - end of life
 | |
|     - best before date
 | |
|     - removal date
 | |
|     - alert date
 | |
| 
 | |
| Also implements the removal strategy First Expiry First Out (FEFO) widely used, for example, in food industries.
 | |
| """,
 | |
|     'data': ['views/production_lot_views.xml',
 | |
|              'views/product_template_views.xml',
 | |
|              'views/stock_quant_views.xml',
 | |
|              'views/report_deliveryslip.xml',
 | |
|              'data/product_expiry_data.xml'],
 | |
| }
 |