odoo/addons/sale_crm/__terp__.py

34 lines
1.0 KiB
Python
Raw Normal View History

# -*- encoding: utf-8 -*-
{
"name" : "Sale CRM Stuff",
"version" : "1.0",
"author" : "Tiny",
"website" : "http://tinyerp.com/module_sale.html",
"depends" : ["sale", "crm_configuration"],
"category" : "Generic Modules/Sales & Purchases",
"description": """
This module adds a shortcut on one or several cases in the CRM.
This shortcut allows you to generate a sale order based the selected case.
If different cases are open (a list), it generates one sale order by
case.
The case is then closed and linked to the generated sale order.
It also add a shortcut on one or several partners.
This shorcut allows you to generate a CRM case for the partners.
We sugest you to install this module if you installed both the sale and the
crm_configuration modules.
""",
"init_xml" : [],
"demo_xml" : [],
"update_xml" : [
"sale_crm_wizard.xml",
"sale_crm_view.xml",
"process/sale_crm_process.xml"
],
"active": False,
"installable": True
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: