trytond-account_reconcile_d.../__init__.py

15 lines
438 B
Python

# This file is part of account_reconcile_different_party 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 account
from . import move
def register():
Pool.register(
account.Account,
move.Line,
move.Reconciliation,
module='account_reconcile_different_party', type_='model')