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.

44 lines
1.3 KiB

  1. # -*- coding: utf-8 -*-
  2. # Copyright (C) 2016-Today GRAP (http://www.grap.coop)
  3. # @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. {
  6. 'name': 'Mass Sorting',
  7. 'version': '1.0',
  8. 'author': 'GRAP,Odoo Community Association (OCA)',
  9. 'category': 'Tools',
  10. 'website': 'http://www.grap.coop',
  11. 'license': 'AGPL-3',
  12. "description": """
  13. Mass Sorting
  14. ============
  15. This module provides the functionality to sort an one2many fields in any model.
  16. Typically, you can sort sale order line on a sale order, using any fields.
  17. See screenshots in the description folder.
  18. This module is highly inspired by 'mass_editing' module. (by OCA and SerpentCS)
  19. """,
  20. 'depends': [
  21. 'base',
  22. ],
  23. 'data': [
  24. 'security/ir.model.access.csv',
  25. 'views/mass_sort_config_view.xml',
  26. 'views/mass_sort_wizard_view.xml',
  27. 'views/action.xml',
  28. 'views/menu.xml',
  29. ],
  30. 'images': [
  31. 'static/description/1_mass_sort_config.png',
  32. 'static/description/2_button.png',
  33. 'static/description/3_mass_sort_wizard.png',
  34. 'static/description/3_mass_sort_wizard_custom.png',
  35. 'static/description/4_before.png',
  36. 'static/description/5_after.png',
  37. ],
  38. }