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.

116 lines
3.5 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2015-TODAY Akretion (<http://www.akretion.com>).
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. {
  22. 'name': 'Tags multiple selection',
  23. 'version': '7.0.1.0',
  24. 'author': 'Akretion, Anybox, Odoo Community Association (OCA)',
  25. 'description': """
  26. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  27. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  28. :alt: License: AGPL-3
  29. ==================================================
  30. Allows multiple selection on many2many_tags widget
  31. ==================================================
  32. In a many2many_tags widget when a lot of entries should be selected it's
  33. fastidious to select 80% of them. Then you may click on 'search more',
  34. but impossible to select several attributes at once.
  35. This module adds a checkbox to this list so multiple entries can be selected
  36. at once.
  37. Installation
  38. ============
  39. It was tested on Odoo 7.0 branch.
  40. Configuration
  41. =============
  42. Once installed, there is nothing else to do.
  43. Usage
  44. =====
  45. Open the `search more...` popup on any ``many2many_tags`` widget.
  46. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/
  47. datas
  48. :alt: Try me on Runbot
  49. :target: https://runbot.odoo-community.org/runbot/162/7.0
  50. Known issues / Roadmap
  51. ======================
  52. * allow multi selection in drop-down.
  53. Bug Tracker
  54. ===========
  55. Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
  56. In case of trouble, please check there if your issue has already been reported.
  57. If you spotted it first, help us smashing it by providing a detailed and
  58. welcomed feedback `here <https://github.com/OCA/web/issues/new?body=module:%20
  59. web_widget_many2many_tags_multi_selection%0Aversion:%207.0%0A%0A
  60. **Steps%20to%20reproduce**%0A-%20...%0A%0A
  61. **Current%20behavior**%0A%0A**Expected%20behavior**>`_.
  62. Credits
  63. =======
  64. Contributors
  65. ------------
  66. * Sylvain Calador <sylvain.calador@akretion.com>
  67. * Pierre Verkest <pverkest@anybox.fr>
  68. Maintainer
  69. ----------
  70. .. image:: https://odoo-community.org/logo.png
  71. :alt: Odoo Community Association
  72. :target: https://odoo-community.org
  73. This module is maintained by the OCA.
  74. OCA, or the Odoo Community Association, is a nonprofit organization whose
  75. mission is to support the collaborative development of Odoo features and
  76. promote its widespread use.
  77. To contribute to this module, please visit http://odoo-community.org.
  78. """,
  79. 'depends': [
  80. 'web',
  81. ],
  82. 'demo': [],
  83. 'website': 'https://www.akretion.com',
  84. 'js': [
  85. 'static/src/js/view_form.js',
  86. ],
  87. 'installable': True,
  88. 'auto_install': False,
  89. 'license': 'AGPL-3',
  90. }