11 lines
300 B
Python

from odoo import models, fields
class ProductTemplate(models.Model):
_inherit = 'product.template'
is_kitchen_item = fields.Boolean(
string='Show in KDS',
default=False,
help="If checked, this product will appear in the Kitchen Display System when ordered."
)