trytond-productive_process/__init__.py

14 lines
420 B
Python
Raw Normal View History

2015-05-21 10:03:12 +02:00
# The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import Pool
from .productive_process import (ProductiveProcess,
ProductiveProcDocMixin, PYSON_NULL_PROCESS)
__all__ = ['ProductiveProcDocMixin', 'PYSON_NULL_PROCESS']
def register():
Pool.register(
ProductiveProcess,
2017-06-01 17:47:35 +02:00
module='productive_process', type_='model')