mirror of
https://github.com/NaN-tic/trytond-aeat_347.git
synced 2023-12-14 02:03:00 +01:00
27 lines
791 B
Python
27 lines
791 B
Python
# This file is part aeat_347 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 aeat
|
|
from . import invoice
|
|
from . import tax
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
aeat.Report,
|
|
aeat.PartyRecord,
|
|
aeat.PropertyRecord,
|
|
invoice.Record,
|
|
invoice.Invoice,
|
|
invoice.Recalculate347RecordStart,
|
|
invoice.Recalculate347RecordEnd,
|
|
invoice.Reasign347RecordStart,
|
|
invoice.Reasign347RecordEnd,
|
|
tax.TaxTemplate,
|
|
tax.Tax,
|
|
module='aeat_347', type_='model')
|
|
Pool.register(
|
|
invoice.Recalculate347Record,
|
|
invoice.Reasign347Record,
|
|
module='aeat_347', type_='wizard')
|