mirror of
https://gitlab.com/datalifeit/trytond-aeat_sii
synced 2023-12-13 20:30:37 +01:00
7d4ebabc70
Merge from changset-087f67664279 and changeset-295373bac60d
31 lines
862 B
Python
31 lines
862 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 invoice
|
|
from . import aeat
|
|
from . import party
|
|
from . import company
|
|
from . import load_pkcs12
|
|
from . import account
|
|
from . import aeat_mapping
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
account.TemplateTax,
|
|
account.Tax,
|
|
party.Party,
|
|
company.Company,
|
|
invoice.Invoice,
|
|
invoice.Sale,
|
|
invoice.Purchase,
|
|
load_pkcs12.LoadPKCS12Start,
|
|
aeat.SIIReport,
|
|
aeat.SIIReportLine,
|
|
aeat.SIIReportLineTax,
|
|
aeat_mapping.IssuedTrytonInvoiceMapper,
|
|
aeat_mapping.RecievedTrytonInvoiceMapper,
|
|
module='aeat_sii', type_='model')
|
|
Pool.register(
|
|
load_pkcs12.LoadPKCS12,
|
|
module='aeat_sii', type_='wizard')
|