trytond-production_mass_bal.../__init__.py

18 lines
621 B
Python
Raw Normal View History

2020-05-13 08:51:38 +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 . import production
def register():
Pool.register(
production.Production,
production.PrintProductionMassBalanceStart,
module='production_mass_balance_report', type_='model')
Pool.register(
production.PrintProductionMassBalance,
module='production_mass_balance_report', type_='wizard')
Pool.register(
production.PrintProductionMassBalanceReport,
2020-05-13 08:51:38 +02:00
module='production_mass_balance_report', type_='report')