__openerp__.py 763 B

123456789101112131415161718192021222324252627282930
  1. # coding: utf-8
  2. # Copyright (C) 2014-Today GRAP (http://www.grap.coop)
  3. # @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. {
  6. 'name': 'Product - EAN Duplicates',
  7. 'summary': 'Detect and fix easily EAN duplicates',
  8. 'version': '8.0.1.0.0',
  9. 'category': 'product',
  10. 'author': 'GRAP',
  11. 'website': 'http://www.grap.coop',
  12. 'license': 'AGPL-3',
  13. 'depends': [
  14. 'product',
  15. ],
  16. 'data': [
  17. 'views/view_product_product.xml',
  18. 'views/action.xml',
  19. 'views/menu.xml',
  20. ],
  21. 'demo': [
  22. 'demo/res_groups.xml',
  23. ],
  24. 'images': [
  25. 'static/description/product_barcode_constrains.png'
  26. ],
  27. 'installable': True,
  28. }