mirror of
https://github.com/NaN-tic/trytond-account_invoice_default_invoicing.git
synced 2023-12-13 21:20:16 +01:00
12 lines
426 B
Python
12 lines
426 B
Python
# This file is part of the account_invoice_default_invoicing module for 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 .configuration import *
|
|
from .invoice import *
|
|
|
|
def register():
|
|
Pool.register(
|
|
AccountConfiguration,
|
|
Invoice,
|
|
module='account_invoice_default_invoicing', type_='model')
|