Odoo modules related to surveys
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.2 KiB

2 years ago
2 years ago
  1. # -*- coding: utf-8 -*-
  2. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
  3. {
  4. "name": "Survey Custom Matrix",
  5. "version": "1.0.0",
  6. "summary": """
  7. Customize matrix response fields type
  8. """,
  9. "description": """
  10. This module adds a new type \"Custom\" for matrix questions that allows to ask for answer types different from radio button or checkbox in the matrix grid.
  11. """,
  12. "author": "RemiFr82",
  13. "contributors": "Sudokeys",
  14. "website": "https://remifr82.me",
  15. "license": "LGPL-3",
  16. "category": "Marketing",
  17. # "price": 0,
  18. # "currency": "EUR",
  19. "application": False,
  20. "installable": True,
  21. "auto_install": False,
  22. "pre_init_hook": "",
  23. "post_init_hook": "",
  24. "uninstall_hook": "",
  25. "excludes": [],
  26. "external_dependencies": [],
  27. "depends": [
  28. "survey",
  29. ],
  30. "data": [
  31. "security/ir_model_access.xml",
  32. "templates/matrix.xml",
  33. "reports/user_input.xml",
  34. "views/survey_question.xml",
  35. "views/survey_user_input.xml",
  36. "views/survey_user_input_line.xml",
  37. ],
  38. "css": [],
  39. "images": [],
  40. "js": [],
  41. "test": [],
  42. "demo": [],
  43. "maintainer": "RemiFr82",
  44. }