18 lines
509 B
Python
18 lines
509 B
Python
# 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 . import invoice
|
|
|
|
__all__ = ['register']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
invoice.InvoiceLine,
|
|
module='account_invoice_line_extras', type_='model')
|
|
Pool.register(
|
|
module='account_invoice_line_extras', type_='wizard')
|
|
Pool.register(
|
|
module='accoun_invoice_line_extras', type_='report')
|