trytonpsk-sale_pos_frontend.../product.py
2021-07-22 17:35:39 -05:00

19 lines
729 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')
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)