trytond-stock_distribution_in/__init__.py
Albert Cervera i Areny d570956f4e Create branch 4.8.
2018-09-02 11:44:39 +02:00

18 lines
538 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 . import configuration
from . import distribution
def register():
Pool.register(
configuration.Configuration,
configuration.ConfigurationSequence,
distribution.Distribution,
distribution.DistributionLine,
distribution.Move,
distribution.Production,
distribution.Location,
module='stock_distribution_in', type_='model')