trytond-account_bank_statem.../__init__.py
Sergi Almacellas Abellana 623daaae19 Add payment group and payment date to counterpart lines tree
(grafted from d6010ac15233ffaae0c4bd6bdaf59206d0cf66b3)
(grafted from 0e23a11056760e10096156747e2b7f858ceabb07)
2016-04-19 16:14:29 +02:00

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')