Initial import from Docker volume
This commit is contained in:
27
modules/account_receivable_rule/__init__.py
Executable file
27
modules/account_receivable_rule/__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, ir
|
||||
from .account import AccountRuleAbstract, AccountRuleAccountAbstract
|
||||
|
||||
__all__ = ['register', 'AccountRuleAbstract', 'AccountRuleAccountAbstract']
|
||||
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
ir.Cron,
|
||||
account.Account,
|
||||
account.Move,
|
||||
account.AccountReceivableRule,
|
||||
account.AccountReceivableRuleAccount,
|
||||
module='account_receivable_rule', type_='model')
|
||||
Pool.register(
|
||||
account.AccountReceivableRule_Dunning,
|
||||
module='account_receivable_rule', type_='model',
|
||||
depends=['account_dunning'])
|
||||
Pool.register(
|
||||
account.Statement,
|
||||
module='account_receivable_rule', type_='model',
|
||||
depends=['account_statement'])
|
||||
Reference in New Issue
Block a user