-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
30 lines (27 loc) · 971 Bytes
/
__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
# 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 journal
from . import party
from . import statement
def register():
Pool.register(
account.Move,
journal.StatementJournal,
party.PartyIdentifier,
statement.Statement,
statement.ImportStatementStart,
statement.PreloadedCardLoading,
statement.PreloadedCardLoadingLine,
module='account_statement_credicoop', type_='model')
Pool.register(
statement.PreloadedCardLoading2,
module='account_statement_credicoop', type_='model',
depends=['cooperative_ar'])
Pool.register(
statement.ImportStatement,
module='account_statement_credicoop', type_='wizard')
Pool.register(
statement.PreloadedCardLoadingReport,
module='account_statement_credicoop', type_='report')