trytond-account_payment_amo.../__init__.py
Francisco jose 6a2458b01f Initial commit.
This commit refs #19026
2021-06-01 11:51:27 +02:00

13 lines
338 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 . import account
def register():
Pool.register(
account.Move,
account.MoveLine,
account.Payment,
module='account_payment_amount_store', type_='model')