mirror of
https://github.com/NaN-tic/trytond-commission_manager.git
synced 2023-12-14 04:03:00 +01:00
14 lines
421 B
Python
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')
|