1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/social_demo/models/social_post.py
2024-12-10 09:04:09 +07:00

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)