trytond-account_payment_days/__init__.py

16 lines
448 B
Python
Raw Permalink Normal View History

2016-11-09 11:49:59 +01:00
# This file is part account_payment_days module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2013-03-31 19:08:09 +02:00
from trytond.pool import Pool
2016-11-09 11:49:59 +01:00
from . import payment_term
from . import invoice
from . import party
2013-03-31 19:08:09 +02:00
def register():
Pool.register(
2016-11-09 11:49:59 +01:00
invoice.Invoice,
party.Party,
payment_term.PaymentTermLine,
2013-03-31 19:08:09 +02:00
module='account_payment_days', type_='model')