10 lines
259 B
Python
10 lines
259 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductProduct(models.Model):
|
|
_inherit = 'product.product'
|
|
|
|
gelato_product_uid = fields.Char(name="Gelato Product UID", readonly=True)
|