trytond-account_bank/__init__.py
Albert Cervera i Areny 3bfc3a6018 Migrate to python 3.
2018-08-17 22:59:55 +02:00

26 lines
723 B
Python

# This file is part of account_bank 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 payment
def register():
Pool.register(
account.PaymentType,
account.BankAccount,
account.Party,
account.Invoice,
account.Reconciliation,
account.Line,
account.CompensationMoveStart,
payment.Journal,
payment.Group,
payment.Payment,
module='account_bank', type_='model')
Pool.register(
payment.PayLine,
account.CompensationMove,
module='account_bank', type_='wizard')