trytond-production_process/__init__.py
Sergi Almacellas Abellana 4f5639f6ff Initial commit
2014-05-12 14:07:03 +02:00

21 lines
454 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .product import *
from .production import *
def register():
Pool.register(
Process,
Step,
BOMInput,
BOMOutput,
Operation,
Route,
BOM,
Production,
Product,
ProductBom,
module='production_process', type_='model')