trytonpsk-sale_pos_frontend.../product.py

21 lines
810 B
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model import fields, ModelSQL
from trytond.pool import PoolMeta
class Product(metaclass=PoolMeta):
__name__ = 'product.product'
products_mix = fields.Many2Many('product.product-mix.option',
'product', 'option', 'Mix')
tasks = fields.One2Many('production.configuration_task', 'product', 'Tasks')
class ProductMixOption(ModelSQL):
'Product Mix Option'
__name__ = 'product.product-mix.option'
product = fields.Many2One('product.product', 'Product',
ondelete='CASCADE', required=True, select=True)
option = fields.Many2One('product.product', 'Product',
ondelete='CASCADE', required=True, select=True)