12 lines
310 B
Python
12 lines
310 B
Python
from trytond.pool import Pool, PoolMeta
|
|
from trytond.model import fields
|
|
|
|
|
|
class Product(metaclass=PoolMeta):
|
|
"Product Fast Food"
|
|
__name__ = 'product.template'
|
|
|
|
pizza = fields.Boolean("Pizza")
|
|
pizza_topping = fields.Boolean("Topping Pizza")
|
|
boms = fields.Many2One('production.bom', "Boms")
|