You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
953 B

  1. # coding: utf-8
  2. # Copyright 2015 Anubía, soluciones en la nube,SL (http://www.anubia.es)
  3. # Alejandro Santana <alejandrosantana@anubia.es>
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  5. {
  6. 'name': 'Optional CSV import',
  7. 'version': '8.0.1.0.0',
  8. 'category': 'Server tools',
  9. 'summary': 'Group-based permissions for importing CSV files',
  10. 'license': 'AGPL-3',
  11. 'author': 'Odoo Community Association (OCA), '
  12. 'Alejandro Santana <alejandrosantana@anubia.es>',
  13. 'maintainer': 'Odoo Community Association (OCA)',
  14. 'website': 'https://github.com/OCA/server-tools',
  15. 'depends': [
  16. 'base_import'
  17. ],
  18. 'data': [
  19. 'security/res_groups.xml',
  20. 'views/base_import.xml',
  21. ],
  22. 'js': [
  23. 'static/src/js/import.js',
  24. ],
  25. 'qweb': [
  26. 'static/src/xml/base_import_security_group.xml',
  27. ],
  28. 'installable': True,
  29. 'post_load': 'post_load',
  30. }