product.py 314 B

123456789101112
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. from odoo import fields, models
  3. class ProductProduct(models.Model):
  4. _inherit = "product.product"
  5. image_fetch_pending = fields.Boolean(
  6. help="Whether an image must be fetched for this product. Handled by a cron.",
  7. )