trytond-account_invoice_int.../__init__.py

12 lines
319 B
Python
Raw Permalink Normal View History

2015-11-18 08:14:31 +01:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2018-10-18 09:31:22 +02:00
from . import invoice
2015-11-18 08:14:31 +01:00
def register():
Pool.register(
2018-10-18 09:31:22 +02:00
invoice.Invoice,
invoice.InvoiceLine,
2015-11-18 08:14:31 +01:00
module='account_invoice_intercompany', type_='model')