__openerp__.py 922 B

123456789101112131415161718192021222324252627282930313233343536
  1. # coding: utf-8
  2. # © 2015 Sylvain CALADOR @ Akretion
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {
  5. 'name': 'Pricelist Per Product',
  6. 'version': '8.0.1.0.0',
  7. 'author': 'Akretion, Odoo Community Association (OCA)',
  8. 'summarize': 'Display pricelist items in products',
  9. 'maintainer': 'Akretion',
  10. 'category': 'sale',
  11. 'depends': [
  12. 'sale',
  13. ],
  14. 'website': 'http://www.akretion.com/',
  15. 'data': [
  16. 'install_view.xml',
  17. 'product_view.xml',
  18. 'pricelist_view.xml',
  19. 'data/pricelist.xml',
  20. ],
  21. 'demo': [
  22. 'demo/product.pricelist.item.csv',
  23. ],
  24. 'tests': [],
  25. 'images': [
  26. 'static/description/mass.png',
  27. 'static/description/pricelist.png',
  28. 'static/description/product.png',
  29. ],
  30. 'installable': True,
  31. 'license': 'AGPL-3',
  32. 'external_dependencies': {
  33. 'python': [],
  34. },
  35. }