trytond-account_invoice_fac.../__init__.py

18 lines
522 B
Python

# This file is part account_invoice_facturae_electronet 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 . import invoice
from . import party
from . import company
def register():
Pool.register(
invoice.Invoice,
invoice.GenerateFacturaeStart,
party.Party,
party.Address,
company.Company,
module='account_invoice_facturae_electronet', type_='model')