forked from Mapan/odoo17e
16 lines
423 B
Python
16 lines
423 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
import random
|
|
|
|
from odoo import models
|
|
|
|
|
|
class DemoSocialPost(models.Model):
|
|
_inherit = 'social.post'
|
|
|
|
def _compute_click_count(self):
|
|
""" Let's add some random click statistics on our posts to make them look better. """
|
|
for post in self:
|
|
post.click_count = random.randint(10000, 30000)
|