__manifest__.py 943 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Resource',
  5. 'version': '1.1',
  6. 'category': 'Hidden',
  7. 'description': """
  8. Module for resource management.
  9. ===============================
  10. A resource represent something that can be scheduled (a developer on a task or a
  11. work center on manufacturing orders). This module manages a resource calendar
  12. associated to every resource. It also manages the leaves of every resource.
  13. """,
  14. 'depends': ['base', 'web'],
  15. 'data': [
  16. 'data/resource_data.xml',
  17. 'security/ir.model.access.csv',
  18. 'security/resource_security.xml',
  19. 'views/resource_views.xml',
  20. ],
  21. 'assets': {
  22. 'web.assets_backend': [
  23. 'resource/static/src/**/*',
  24. ],
  25. 'web.qunit_suite_tests': [
  26. 'resource/static/tests/components/*.js',
  27. ],
  28. },
  29. 'license': 'LGPL-3',
  30. }