trytond-account_payment/__init__.py

21 lines
532 B
Python
Raw Permalink Normal View History

2013-09-23 10:05:48 +02:00
#This file is part of 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 .payment import *
from .account import *
def register():
Pool.register(
Journal,
Group,
Payment,
MoveLine,
ProcessPaymentStart,
2013-11-22 21:07:53 +01:00
PayLineStart,
2013-09-23 10:05:48 +02:00
module='account_payment', type_='model')
Pool.register(
ProcessPayment,
2013-11-22 21:07:53 +01:00
PayLine,
2013-09-23 10:05:48 +02:00
module='account_payment', type_='wizard')