mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
12 lines
286 B
Python
12 lines
286 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = "product.template"
|
|
|
|
channel_available = fields.Boolean(
|
|
string="Sale Channel Available",
|
|
help="If checked, the product will be available for Channel",
|
|
default=False,
|
|
)
|