Files
pms/pms_api_rest/models/product_product.py
2024-04-22 17:25:00 +02:00

12 lines
284 B
Python

from odoo import fields, models
class ProductProduct(models.Model):
_inherit = "product.product"
channel_available = fields.Boolean(
string="Sale Channel Available",
help="If checked, the product will be available for Channel",
default=False,
)