trytond-aeat_340/__init__.py

33 lines
812 B
Python
Raw Normal View History

2013-08-16 17:55:54 +02:00
#This file is part of 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 .aeat import *
from .invoice import *
2013-08-16 17:55:54 +02:00
def register():
Pool.register(
Report,
Issued,
Received,
Investment,
Intracommunity,
Type,
TypeTax,
TypeTemplateTax,
Record,
AEAT340RecordInvoiceLine,
TemplateTax,
Tax,
Invoice,
InvoiceLine,
Recalculate340RecordStart,
Recalculate340RecordEnd,
Reasign340RecordStart,
Reasign340RecordEnd,
2013-08-16 17:55:54 +02:00
module='aeat_340', type_='model')
Pool.register(
Recalculate340Record,
Reasign340Record,
module='aeat_340', type_='wizard')