13 lines
318 B
Python
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',
|
|
)
|