Initial import from Docker volume
This commit is contained in:
27
modules/account_fr_chorus/__init__.py
Executable file
27
modules/account_fr_chorus/__init__.py
Executable file
@@ -0,0 +1,27 @@
|
||||
# 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 account, edocument, ir, party
|
||||
|
||||
__all__ = ['register']
|
||||
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
account.Configuration,
|
||||
account.CredentialChorus,
|
||||
account.Invoice,
|
||||
account.InvoiceChorus,
|
||||
party.Party,
|
||||
ir.Cron,
|
||||
module='account_fr_chorus', type_='model')
|
||||
Pool.register(
|
||||
edocument.UNCEFACTInvoice,
|
||||
module='account_fr_chorus', type_='model',
|
||||
depends=['edocument_uncefact'])
|
||||
Pool.register(
|
||||
module='account_fr_chorus', type_='wizard')
|
||||
Pool.register(
|
||||
module='account_fr_chorus', type_='report')
|
||||
Reference in New Issue
Block a user