firs commit
This commit is contained in:
10
product.py
Normal file
10
product.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user