__manifest__.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Product Comparison',
  5. 'summary': 'Allow shoppers to compare products based on their attributes',
  6. 'description': """
  7. This module adds a comparison tool to your eCommerce shop, so that your shoppers can easily compare products based on their attributes. It will considerably accelerate their purchasing decision.
  8. To configure product attributes, activate *Attributes & Variants* in the Website settings. This will add a dedicated section in the product form. In the configuration, this module adds a category field to product attributes in order to structure the shopper's comparison table.
  9. Finally, the module comes with an option to display an attribute summary table in product web pages (available in Customize menu).
  10. """,
  11. 'author': 'Odoo SA',
  12. 'category': 'Website/Website',
  13. 'version': '1.0',
  14. 'depends': ['website_sale'],
  15. 'data': [
  16. 'security/ir.model.access.csv',
  17. 'views/website_sale_comparison_template.xml',
  18. 'views/website_sale_comparison_view.xml',
  19. 'views/snippets.xml',
  20. ],
  21. 'demo': [
  22. 'data/website_sale_comparison_data.xml',
  23. 'data/website_sale_comparison_demo.xml',
  24. ],
  25. 'installable': True,
  26. 'assets': {
  27. 'web.assets_frontend': [
  28. 'website_sale_comparison/static/src/scss/website_sale_comparison.scss',
  29. 'website_sale_comparison/static/src/js/**/*.js',
  30. 'website_sale_comparison/static/src/xml/comparison.xml',
  31. ],
  32. 'web.assets_tests': [
  33. 'website_sale_comparison/static/tests/**/*',
  34. ],
  35. },
  36. 'license': 'LGPL-3',
  37. }