__openerp__.py 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Akretion (http://www.akretion.com)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. # @author Alexis de Lattre <alexis.delattre@akretion.com>
  5. {
  6. 'name': 'Sale CRM Usability',
  7. 'version': '8.0.1.0.0',
  8. 'category': 'Customer Relationship Management',
  9. 'license': 'AGPL-3',
  10. 'summary': 'Link between opportunities and sale orders',
  11. 'description': """
  12. Sale CRM Usability
  13. ==================
  14. This module adds a One2many link from opportunities to sale orders.
  15. When a sale order linked to an opportunity is confirmed, the opportunity
  16. is automatically moved to the *Won* step.
  17. When you click on the button *Mark as lost* on an opportunity, the related quotations (*draft* or *sent* state) are automatically cancelled.
  18. This module has been written by Alexis de Lattre from Akretion
  19. <alexis.delattre@akretion.com>.
  20. """,
  21. 'author': 'Akretion',
  22. 'website': 'http://www.akretion.com',
  23. 'depends': ['sale_crm'],
  24. 'data': ['sale_crm_view.xml'],
  25. 'installable': True,
  26. }