__manifest__.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. 'name': 'Base import',
  3. 'description': """
  4. New extensible file import for Odoo
  5. ======================================
  6. Re-implement Odoo's file import system:
  7. * Server side, the previous system forces most of the logic into the
  8. client which duplicates the effort (between clients), makes the
  9. import system much harder to use without a client (direct RPC or
  10. other forms of automation) and makes knowledge about the
  11. import/export system much harder to gather as it is spread over
  12. 3+ different projects.
  13. * In a more extensible manner, so users and partners can build their
  14. own front-end to import from other file formats (e.g. OpenDocument
  15. files) which may be simpler to handle in their work flow or from
  16. their data production sources.
  17. * In a module, so that administrators and users of Odoo who do not
  18. need or want an online import can avoid it being available to users.
  19. """,
  20. 'depends': ['web'],
  21. 'version': '2.0',
  22. 'category': 'Hidden/Tools',
  23. 'installable': True,
  24. 'auto_install': True,
  25. 'data': [
  26. 'security/ir.model.access.csv',
  27. ],
  28. 'assets': {
  29. 'web.assets_backend': [
  30. 'base_import/static/lib/javascript-state-machine/state-machine.js',
  31. 'base_import/static/src/**/*.scss',
  32. 'base_import/static/src/**/*.js',
  33. 'base_import/static/src/**/*.xml',
  34. ],
  35. 'web.qunit_suite_tests': [
  36. 'base_import/static/tests/**/*',
  37. ],
  38. },
  39. 'license': 'LGPL-3',
  40. }