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.

60 lines
2.1 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # IT IS AG, software solutions
  5. # Copyright (C) 2015-TODAY IT IS AG (<http://www.itis.de, www.itis.us>).
  6. #
  7. #
  8. # The software works in conjunction with other software distributed from
  9. # other parties which is licensed under the GNU Lesser General Public
  10. # License (LGPL).
  11. # Those pieces are not owned by IT IS AG and therefore not under the terms
  12. # of the IT IS EULA, and WITHOUT ANY WARRANTY; without even the implied
  13. # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Lesser General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public License
  17. # along with IT IS Odoo Textblock. If not, see <http://www.gnu.org/licenses/>
  18. #
  19. ##############################################################################
  20. {
  21. 'name': "IT IS GDPR Extension",
  22. 'summary': """
  23. Extended Website Contact View to give Customer the option on how to be contacted.
  24. View for DPO to look up Customer Data.
  25. Newletter Double Opt-In and -Out extending the Odoo mass_mailing module.
  26. """,
  27. 'description': """
  28. Extended Website Contact View to give Customer the option on how to be contacted.
  29. View for DPO to look up Customer Data.
  30. Newletter Double Opt-In and -Out extending the Odoo mass_mailing module.
  31. """,
  32. 'author': "IT IS AG",
  33. 'website': "http://www.itis-odoo.de",
  34. # Categories can be used to filter modules in modules listing
  35. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  36. # for the full list
  37. 'version': '0.1',
  38. 'category': 'Website',
  39. 'depends': ['base',
  40. 'website',
  41. 'mass_mailing',
  42. 'contacts',
  43. 'website_crm',
  44. ],
  45. 'data': [
  46. 'views/contact_view.xml',
  47. 'security/gdpr_security.xml',
  48. 'security/ir.model.access.csv',
  49. 'views/views.xml',
  50. 'views/contact_report.xml',
  51. ],
  52. 'icon': "/itis_gdpr_extension/static/src/img/itisag.png",
  53. }