blob: 1323b98d3b715cf4543ae01aa5b6e444fbc9ec3f (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class Channel(models.Model):
_inherit = 'slide.channel'
nbr_certification = fields.Integer("Number of Certifications", compute='_compute_slides_statistics', store=True)
|