summaryrefslogtreecommitdiff
path: root/addons/product_expiry/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/product_expiry/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/product_expiry/__manifest__.py')
-rw-r--r--addons/product_expiry/__manifest__.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/addons/product_expiry/__manifest__.py b/addons/product_expiry/__manifest__.py
new file mode 100644
index 00000000..60f38223
--- /dev/null
+++ b/addons/product_expiry/__manifest__.py
@@ -0,0 +1,32 @@
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Products Expiration Date',
+ 'category': 'Inventory/Inventory',
+ 'depends': ['stock'],
+ 'demo': [],
+ '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'],
+ 'license': 'LGPL-3',
+}