__manifest__.py 974 B

1234567891011121314151617181920212223242526272829303132333435
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Sale Product Configurator",
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'summary': "Configure your products",
  8. 'description': """
  9. Technical module:
  10. The main purpose is to override the sale_order view to allow configuring products in the SO form.
  11. It also enables the "optional products" feature.
  12. """,
  13. 'depends': ['sale'],
  14. 'data': [
  15. 'views/product_template_views.xml',
  16. 'views/sale_order_views.xml',
  17. 'views/templates.xml',
  18. ],
  19. 'demo': [
  20. 'data/sale_demo.xml',
  21. ],
  22. 'assets': {
  23. 'web.assets_backend': [
  24. 'sale/static/src/js/variant_mixin.js',
  25. 'sale_product_configurator/static/src/js/product_configurator_modal.js',
  26. 'sale_product_configurator/static/src/js/sale_product_field.js',
  27. ],
  28. },
  29. 'auto_install': True,
  30. 'license': 'LGPL-3',
  31. }