__manifest__.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Products Expiration Date',
  4. 'category': 'Inventory/Inventory',
  5. 'depends': ['stock'],
  6. 'description': """
  7. Track different dates on products and production lots.
  8. ======================================================
  9. Following dates can be tracked:
  10. -------------------------------
  11. - end of life
  12. - best before date
  13. - removal date
  14. - alert date
  15. Also implements the removal strategy First Expiry First Out (FEFO) widely used, for example, in food industries.
  16. """,
  17. 'data': ['security/ir.model.access.csv',
  18. 'security/stock_security.xml',
  19. 'views/production_lot_views.xml',
  20. 'views/product_template_views.xml',
  21. 'views/res_config_settings_views.xml',
  22. 'views/stock_move_views.xml',
  23. 'views/stock_quant_views.xml',
  24. 'wizard/confirm_expiry_view.xml',
  25. 'report/report_deliveryslip.xml',
  26. 'report/report_lot_barcode.xml',
  27. 'report/report_package_barcode.xml',
  28. 'data/product_expiry_data.xml',
  29. 'data/mail_activity_type_data.xml',
  30. ],
  31. 'license': 'LGPL-3',
  32. }