trytond-party_bank/__init__.py

15 lines
364 B
Python
Raw Permalink Normal View History

2012-10-11 12:12:07 +02:00
#This file is part party_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
2013-04-30 11:45:16 +02:00
from .bank import *
from .party import *
2012-10-11 12:12:07 +02:00
def register():
Pool.register(
Bank,
BankAccount,
Party,
module='party_bank', type_='model')