File: __init__.py

package info (click to toggle)
tryton-modules-production-work 5.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 544 kB
  • sloc: python: 566; xml: 443; makefile: 6; sh: 3
file content (19 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 Pool
from .work import *
from .routing import *
from .production import *


def register():
    Pool.register(
        WorkCenterCategory,
        WorkCenter,
        Work,
        WorkCycle,
        Operation,
        RoutingStep,
        Production,
        module='production_work', type_='model')