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.
20 lines
514 B
20 lines
514 B
# -*- coding: utf-8 -*-
|
|
# © <2015> <Akretion, GRAP, OCA>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from openerp import api, fields, models
|
|
|
|
|
|
class ProductProduct(models.Model):
|
|
_inherit = ['product.product']
|
|
|
|
@api.multi
|
|
@api.depends('image')
|
|
def _compute_has_image(self):
|
|
for record in self:
|
|
record.has_image = bool(record.image)
|
|
|
|
has_image = fields.Boolean(
|
|
compute='_compute_has_image',
|
|
store=True,
|
|
readonly=True,
|
|
)
|