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.

39 lines
960 B

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 input duration",
  5. "version": "1.0.0",
  6. "summary": """
  7. Compute duration on survey answers
  8. """,
  9. "description": """
  10. This module computes surveys filling duration based on start and done dates and times.
  11. """,
  12. "author": "RemiFr82",
  13. "contributors": "",
  14. "website": "https://remifr82.me",
  15. "maintainer": "RemiFr82",
  16. "license": "LGPL-3",
  17. "category": "Marketing",
  18. # "price": 5,
  19. # "currency": "EUR",
  20. "application": False,
  21. "installable": True,
  22. "auto_install": False,
  23. "pre_init_hook": "",
  24. "post_init_hook": "",
  25. "uninstall_hook": "",
  26. "excludes": [],
  27. "external_dependencies": [],
  28. "depends": [
  29. "survey",
  30. ],
  31. "data": [
  32. "views/survey_user_input.xml",
  33. ],
  34. "css": [],
  35. "images": [],
  36. "js": [],
  37. "test": [],
  38. "demo": [],
  39. }