__openerp__.py 752 B

1234567891011121314151617181920212223
  1. # coding: utf-8
  2. # © 2016 David BEAL @ Akretion <david.beal@akretion.com>
  3. # © 2016 Raphaël REVERDY @ Akretion <raphael.reverdy@akretion.com>
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. {
  6. 'name': 'Product Variant Search by Attributes',
  7. 'summary': """Allows searching inside the product variant attributes
  8. all attributes at once with multiple keywords""",
  9. 'version': '8.0.1.0.0',
  10. 'category': 'Product',
  11. 'author': ['Akretion', 'Odoo Community Association (OCA)'],
  12. 'depends': [
  13. 'product',
  14. ],
  15. 'website': 'http://www.akretion.com/',
  16. 'data': [
  17. 'data/config_data.xml',
  18. 'views/product_view.xml',
  19. ],
  20. 'installable': True,
  21. 'license': 'AGPL-3',
  22. }