You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# -*- coding: utf-8 -*- # Copyright (C) 2017 - Today: # GRAP (http://www.grap.coop) # Akretion (http://www.akretion.com) # @author: Sylvain LE GAL (https://twitter.com/legalsylvain) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models, fields, api
class ProductProduct(models.Model): _inherit = 'product.product'
@api.multi @api.depends('image') def _compute_has_image(self): for product in self: product.has_image = product.image is not False
has_image = fields.Boolean( compute='_compute_has_image', string='Has Image', store=True)
|