File: product.py

package info (click to toggle)
tryton-modules-sale-supply 5.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 344 kB
  • sloc: python: 446; xml: 61; makefile: 6; sh: 3
file content (21 lines) | stat: -rw-r--r-- 616 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
from trytond.pool import PoolMeta
from trytond.pyson import Eval

__all__ = ['Template', 'Product']


class Template(metaclass=PoolMeta):
    __name__ = 'product.template'

    supply_on_sale = fields.Boolean('Supply On Sale',
        states={
            'invisible': ~Eval('purchasable') | ~Eval('salable'),
            },
        depends=['purchasable', 'salable'])


class Product(metaclass=PoolMeta):
    __name__ = 'product.product'