trytondo-account_invoice_li.../__init__.py
2023-07-12 11:35:22 -05:00

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')