__manifest__.py 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Sales Teams',
  5. 'version': '1.1',
  6. 'category': 'Sales/Sales',
  7. 'summary': 'Sales Teams',
  8. 'description': """
  9. Using this application you can manage Sales Teams with CRM and/or Sales
  10. =======================================================================
  11. """,
  12. 'website': 'https://www.odoo.com/app/crm',
  13. 'depends': ['base', 'mail'],
  14. 'data': [
  15. 'security/sales_team_security.xml',
  16. 'security/ir.model.access.csv',
  17. 'data/crm_team_data.xml',
  18. 'views/crm_tag_views.xml',
  19. 'views/crm_team_views.xml',
  20. 'views/crm_team_member_views.xml',
  21. 'views/mail_activity_views.xml',
  22. 'views/res_partner_views.xml',
  23. ],
  24. 'demo': [
  25. 'data/crm_team_demo.xml',
  26. 'data/crm_tag_demo.xml',
  27. ],
  28. 'installable': True,
  29. 'assets': {
  30. 'web.assets_backend': [
  31. 'sales_team/static/**/*',
  32. ],
  33. },
  34. 'license': 'LGPL-3',
  35. }