Files
2026-09-18 13:55:25 +07:00

13 lines
318 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ProductAttribute(models.Model):
_inherit = 'product.attribute'
visibility = fields.Selection(
selection=[('visible', "Visible"), ('hidden', "Hidden")],
default='visible',
)