File: product.py

package info (click to toggle)
tryton-modules-production-routing 5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 444 kB
  • sloc: xml: 239; python: 229; makefile: 6; sh: 3
file content (27 lines) | stat: -rw-r--r-- 859 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
22
23
24
25
26
27
# 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.pool import PoolMeta
from trytond.model import fields
from trytond.pyson import Eval

__all__ = ['ProductBom', 'ProductionLeadTime']


class ProductBom(metaclass=PoolMeta):
    __name__ = 'product.product-production.bom'
    routing = fields.Many2One('production.routing', 'Routing',
        ondelete='CASCADE', select=True,
        domain=[
            ('boms', '=', Eval('bom', 0)),
            ],
        depends=['bom'])


class ProductionLeadTime(metaclass=PoolMeta):
    __name__ = 'production.lead_time'
    routing = fields.Many2One('production.routing', 'Routing',
        ondelete='CASCADE',
        domain=[
            ('boms', '=', Eval('bom', 0)),
            ],
        depends=['bom'])