-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
59 lines (57 loc) · 2.15 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# This file is part account_statement_enable_banking 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 account
from . import enable_banking
from . import journal
from . import routes
from . import statement
from . import statement_aeb43
from . import statement_analytic
from . import invoice
from . import account_bank
__all__ = ['register', 'routes']
def register():
Pool.register(
account.Move,
account.MoveLine,
enable_banking.EnableBankingConfiguration,
enable_banking.EnableBankingSession,
journal.Journal,
journal.Cron,
statement.Statement,
statement.Line,
statement.Origin,
statement.OriginSuggestedLine,
statement.AddMultipleInvoicesStart,
statement.AddMultipleMoveLinesStart,
statement.SynchronizeStatementEnableBankingStart,
statement.OriginSynchronizeStatementEnableBankingAsk,
invoice.Invoice,
module='account_statement_enable_banking', type_='model')
Pool.register(
statement.AddMultipleInvoices,
statement.AddMultipleMoveLines,
statement.SynchronizeStatementEnableBanking,
statement.OriginSynchronizeStatementEnableBanking,
module='account_statement_enable_banking', type_='wizard')
Pool.register(
enable_banking.EnableBankingSessionOK,
enable_banking.EnableBankingSessionKO,
module='account_statement_enable_banking', type_='report')
Pool.register(
statement_aeb43.ImportStatement,
depends=['account_statement_aeb43'],
module='account_statement_enable_banking', type_='wizard')
Pool.register(
account_bank.CompensationMove,
depends=['account_bank'],
module='account_statement_enable_banking', type_='wizard')
Pool.register(
statement_analytic.Line,
statement_analytic.Origin,
statement_analytic.OriginSuggestedLine,
statement_analytic.AnalyticAccountEntry,
depends=['analytic_account'],
module='account_statement_enable_banking', type_='model')