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.

40 lines
1.0 KiB

2 years ago
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": "Auto-close survey on deadline",
  5. "version": "1.0.0",
  6. "summary": """
  7. Deadline date on surveys and auto-close option
  8. """,
  9. "description": """
  10. This module adds a deadline date on surveys and a checkbox to automatically close them with a planned action.""",
  11. "author": "RemiFr82",
  12. "contributors": "Sudokeys",
  13. "website": "https://remifr82.me",
  14. "license": "LGPL-3",
  15. "category": "Marketing",
  16. # "price": 0,
  17. # "currency": "EUR",
  18. "application": False,
  19. "installable": True,
  20. "auto_install": False,
  21. "pre_init_hook": "",
  22. "post_init_hook": "",
  23. "uninstall_hook": "",
  24. "excludes": [],
  25. "external_dependencies": [],
  26. "depends": [
  27. "survey",
  28. ],
  29. "data": [
  30. "data/ir_cron.xml",
  31. "data/mail_message_subtype.xml",
  32. "views/survey_survey.xml",
  33. ],
  34. "css": [],
  35. "images": [],
  36. "js": [],
  37. "test": [],
  38. "demo": [],
  39. "maintainer": "RemiFr82",
  40. }