mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 22:52:03 +02:00
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Products Expiration Date',
|
|
'category': 'Supply Chain/Inventory',
|
|
'depends': ['stock'],
|
|
'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': ['security/ir.model.access.csv',
|
|
'security/stock_security.xml',
|
|
'views/production_lot_views.xml',
|
|
'views/product_template_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/stock_move_views.xml',
|
|
'views/stock_quant_views.xml',
|
|
'wizard/confirm_expiry_view.xml',
|
|
'report/report_deliveryslip.xml',
|
|
'report/report_lot_barcode.xml',
|
|
'data/product_expiry_data.xml',
|
|
],
|
|
'post_init_hook': '_enable_tracking_numbers',
|
|
'assets': {
|
|
'web.assets_tests': [
|
|
'product_expiry/static/tests/tours/*.js',
|
|
],
|
|
'web.assets_backend': [
|
|
'product_expiry/static/src/**/*',
|
|
],
|
|
},
|
|
'author': 'Odoo S.A.',
|
|
'license': 'LGPL-3',
|
|
}
|