Prospect modules (different approch than the OCA module partner_prospect in sale-workflow)

This commit is contained in:
Alexis de Lattre
2017-02-02 00:24:20 +01:00
parent e353cdcad1
commit b518594136
12 changed files with 285 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
# © 2017 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Sale Partner Prospect',
'version': '10.0.1.0.0',
'category': 'Sales',
'license': 'AGPL-3',
'summary': "Glue module between base_partner_prospect and sale modules",
'description': """
Sale Partner Prospect
=====================
This is a glue module between *base_partner_prospect* and *sale* modules. When you confirm a sale order, the partner will be converted from a prospect to a customer.
This module has been written by Alexis de Lattre from Akretion
<alexis.delattre@akretion.com>.
""",
'author': 'Akretion',
'website': 'http://www.akretion.com',
'depends': ['sale', 'base_partner_prospect'],
'data': [
'sale_view.xml',
],
'installable': True,
'auto_install': True,
}