trytond-account_invoice_tax.../__init__.py

13 lines
391 B
Python
Raw Normal View History

2018-01-10 15:10:02 +01:00
# This file is part account_invoice_taxes_required module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2012-10-17 12:44:55 +02:00
from trytond.pool import Pool
2018-01-10 15:10:02 +01:00
from . import invoice
2012-10-17 12:44:55 +02:00
2015-11-02 14:44:18 +01:00
2012-10-17 12:44:55 +02:00
def register():
Pool.register(
2018-01-10 15:10:02 +01:00
invoice.Invoice,
invoice.InvoiceLine,
2012-10-17 12:44:55 +02:00
module='account_invoice_taxes_required', type_='model')