summaryrefslogtreecommitdiff
path: root/addons/website_crm_partner_assign/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/website_crm_partner_assign/__manifest__.py')
-rw-r--r--addons/website_crm_partner_assign/__manifest__.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/addons/website_crm_partner_assign/__manifest__.py b/addons/website_crm_partner_assign/__manifest__.py
new file mode 100644
index 00000000..3dc0074b
--- /dev/null
+++ b/addons/website_crm_partner_assign/__manifest__.py
@@ -0,0 +1,44 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'Resellers',
+ 'category': 'Website/Website',
+ 'summary': 'Publish your resellers/partners and forward leads to them',
+ 'version': '1.0',
+ 'description': """
+This module allows to publish your resellers/partners on your website and to forward incoming leads/opportunities to them.
+
+
+**Publish a partner**
+
+To publish a partner, set a *Level* in their contact form (in the Partner Assignment section) and click the *Publish* button.
+
+**Forward leads**
+
+Forwarding leads can be done for one or several leads at a time. The action is available in the *Assigned Partner* section of the lead/opportunity form view and in the *Action* menu of the list view.
+
+The automatic assignment is figured from the weight of partner levels and the geolocalization. Partners get leads that are located around them.
+
+ """,
+ 'depends': ['base_geolocalize', 'crm', 'account',
+ 'website_partner', 'website_google_map', 'portal'],
+ 'data': [
+ 'data/crm_partner_assign_data.xml',
+ 'security/ir.model.access.csv',
+ 'security/ir_rule.xml',
+ 'wizard/crm_forward_to_partner_view.xml',
+ 'views/res_partner_views.xml',
+ 'views/crm_lead_views.xml',
+ 'views/website_crm_partner_assign_templates.xml',
+ 'report/crm_partner_report_view.xml',
+ ],
+ 'demo': [
+ 'data/res_partner_demo.xml',
+ 'data/crm_lead_demo.xml',
+ 'data/res_partner_grade_demo.xml',
+ ],
+ 'qweb': ['static/src/xml/*.xml'],
+ 'installable': True,
+ 'license': 'LGPL-3',
+}