summaryrefslogtreecommitdiff
path: root/addons/link_tracker/models/utm.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/link_tracker/models/utm.py')
-rw-r--r--addons/link_tracker/models/utm.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/addons/link_tracker/models/utm.py b/addons/link_tracker/models/utm.py
new file mode 100644
index 00000000..75eff850
--- /dev/null
+++ b/addons/link_tracker/models/utm.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import fields, models
+
+
+class UtmCampaign(models.Model):
+ _inherit = ['utm.campaign']
+ _description = 'UTM Campaign'
+
+ click_count = fields.Integer(string="Number of clicks generated by the campaign", compute="_compute_clicks_count")
+
+ def _compute_clicks_count(self):
+ click_data = self.env['link.tracker.click'].read_group(
+ [('campaign_id', 'in', self.ids)],
+ ['campaign_id'], ['campaign_id'])
+
+ mapped_data = {datum['campaign_id'][0]: datum['campaign_id_count'] for datum in click_data}
+
+ for campaign in self:
+ campaign.click_count = mapped_data.get(campaign.id, 0)