__manifest__.py 929 B

1234567891011121314151617181920212223242526272829303132333435
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "set_customer_groups",
  4. 'summary': "Add users to groups based on their purchases.",
  5. 'description': """
  6. When a user makes a purchase through the eCommerce store add the user to one or multiple groups as defined in
  7. a mapping.
  8. """,
  9. 'author': "dmsc.dev",
  10. 'website': "https://www.dmsc.dev",
  11. # Categories can be used to filter modules in modules listing
  12. # Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
  13. # for the full list
  14. 'category': 'Technical',
  15. 'version': '0.1',
  16. # any module necessary for this one to work correctly
  17. 'depends': ['base', 'website_sale'],
  18. # always loaded
  19. 'data': [
  20. # 'security/ir.model.access.csv',
  21. 'views/views.xml',
  22. 'views/templates.xml',
  23. ],
  24. # only loaded in demonstration mode
  25. 'demo': [
  26. 'demo/demo.xml',
  27. ],
  28. }