10 lines
269 B
Python
10 lines
269 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ProductImage(models.Model):
|
|
_inherit = "product.image"
|
|
|
|
# TODO: Remove as soon as data_nature thumbnails work
|
|
image_1920 = fields.Image(
|
|
"Image", max_width=1920, max_height=1920, verify_resolution=False
|
|
)
|