trytond-party_bank_validation/__init__.py

12 lines
336 B
Python
Executable File

#This file is part party_bank_validation 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 .bank import *
def register():
Pool.register(
BankAccount,
module='party_bank_validation', type_='model')