__openerp__.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. # © 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. {
  5. 'name': 'Product Expiry Simple',
  6. 'version': '8.0.1.0.0',
  7. 'category': 'Product',
  8. 'license': 'AGPL-3',
  9. 'summary': 'Simpler and better alternative to the official product_expiry module',
  10. 'description': """
  11. Product Expiry Simple
  12. =====================
  13. This module is similar to the official *product_expiry* modules, but much simpler and much better:
  14. * Only one expiry date field instead of 4 !
  15. * date field instead of datetime
  16. * No automatic computing of expiry date based on a delay configured on product (not needed in most companies)
  17. * colored production lot and stock quant tree views depending on expiry dates
  18. * ability to show stats about expiry dates on quants pivot table (thanks to related stored field on stock.quant)
  19. This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>.
  20. """,
  21. 'author': 'Akretion',
  22. 'website': 'http://www.akretion.com',
  23. 'depends': ['stock'],
  24. 'conflicts': ['product_expiry'],
  25. 'data': [
  26. 'stock_view.xml',
  27. 'product_removal_data.xml',
  28. ],
  29. 'installable': True,
  30. }