trytond-party_bank/__init__.py

15 lines
362 B
Python
Raw 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
2009-01-18 22:08:33 +01:00
from bank import *
2009-04-09 23:59:22 +02:00
from party import *
2012-10-11 12:12:07 +02:00
def register():
Pool.register(
Bank,
BankAccount,
Party,
module='party_bank', type_='model')