trytond-commission_manager/__init__.py
2018-08-27 11:13:22 +02:00

14 lines
421 B
Python

# This file is part commission_manager module for 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 . import commission
from . import invoice
def register():
Pool.register(
commission.Manager,
commission.Agent,
invoice.InvoiceLine,
module='commission_manager', type_='model')