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