__manifest__.py 954 B

1234567891011121314151617181920212223242526272829303132
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Events Booths Sales",
  5. 'category': 'Marketing/Events',
  6. 'version': '1.1',
  7. 'summary': "Manage event booths sale",
  8. 'description': """
  9. Sell your event booths and track payments on sale orders.
  10. """,
  11. 'depends': ['event_booth', 'event_sale'],
  12. 'data': [
  13. 'security/ir.model.access.csv',
  14. 'data/product_data.xml',
  15. 'data/event_booth_category_data.xml',
  16. 'views/sale_order_views.xml',
  17. 'views/event_type_booth_views.xml',
  18. 'views/event_booth_category_views.xml',
  19. 'views/event_booth_registration_views.xml',
  20. 'views/event_booth_views.xml',
  21. 'wizard/event_booth_configurator_views.xml',
  22. ],
  23. 'auto_install': True,
  24. 'assets': {
  25. 'web.assets_backend': [
  26. 'event_booth_sale/static/src/**/*',
  27. ]
  28. },
  29. 'license': 'LGPL-3',
  30. }