mirror of
https://github.com/NaN-tic/trytond-account_bank_statement_payment.git
synced 2023-12-13 21:30:39 +01:00
623daaae19
(grafted from d6010ac15233ffaae0c4bd6bdaf59206d0cf66b3) (grafted from 0e23a11056760e10096156747e2b7f858ceabb07)
13 lines
349 B
Python
13 lines
349 B
Python
# The COPYRIGHT file at the top level of this repository contains the full
|
|
# copyright notices and license terms.
|
|
from trytond.pool import Pool
|
|
from .account import *
|
|
from .statement import *
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
MoveLine,
|
|
StatementLine,
|
|
Group,
|
|
module='account_bank_statement_payment', type_='model')
|