summaryrefslogtreecommitdiff
path: root/addons/website_crm/models/res_config_settings.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/website_crm/models/res_config_settings.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/website_crm/models/res_config_settings.py')
-rw-r--r--addons/website_crm/models/res_config_settings.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/addons/website_crm/models/res_config_settings.py b/addons/website_crm/models/res_config_settings.py
new file mode 100644
index 00000000..c78d51fd
--- /dev/null
+++ b/addons/website_crm/models/res_config_settings.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+from odoo import fields, models
+
+
+class ResConfigSettings(models.TransientModel):
+ _inherit = 'res.config.settings'
+
+ def _get_crm_default_team_domain(self):
+ if not self.env.user.has_group('crm.group_use_lead'):
+ return [('use_opportunities', '=', True)]
+ return [('use_leads', '=', True)]
+
+ crm_default_team_id = fields.Many2one(
+ 'crm.team', string='Default Sales Team', related='website_id.crm_default_team_id', readonly=False,
+ domain=lambda self: self._get_crm_default_team_domain(),
+ help='Default Sales Team for new leads created through the Contact Us form.')
+ crm_default_user_id = fields.Many2one(
+ 'res.users', string='Default Salesperson', related='website_id.crm_default_user_id', domain=[('share', '=', False)], readonly=False,
+ help='Default salesperson for new leads created through the Contact Us form.')