__openerp__.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
  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': 'CRM Mensajes',
  23. 'version': '1.0',
  24. 'category': 'Registro de mensajes',
  25. 'sequence': 2,
  26. 'summary': 'Mensajes',
  27. 'description': """
  28. Registro de Mensajes
  29. ====================================================
  30. Esta aplicación se utiliza para registrar los datos más importantes de una conversación por medio de mensajes con el cliente.
  31. Los datos registrados son: el asunto, la fecha y hora, el cliente, etc.
  32. """,
  33. 'author': 'Sebastian Penayo/Eiru Software',
  34. 'website': 'https://www.eiru.com.py',
  35. 'depends': [
  36. 'base_action_rule',
  37. 'base_setup',
  38. 'sales_team',
  39. 'mail',
  40. 'email_template',
  41. 'crm',
  42. 'resource',
  43. 'board',
  44. 'fetchmail',
  45. ],
  46. 'data': [
  47. 'crm_mensaje_view.xml',
  48. 'crm_lead_view.xml',
  49. 'crm_mensaje_menu.xml',
  50. 'res_partner_view.xml',
  51. 'informe_crm_mensaje.xml',
  52. ],
  53. 'demo': [
  54. ],
  55. 'test': [
  56. ],
  57. 'installable': True,
  58. 'application': True,
  59. 'auto_install': False,
  60. }
  61. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: