trytond-account_invoice_con.../__init__.py

11 lines
289 B
Python
Raw Normal View History

2015-05-11 17:48:45 +02:00
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2012-10-17 11:18:43 +02:00
from trytond.pool import Pool
2018-01-09 15:53:17 +01:00
from . import invoice
2012-10-17 11:18:43 +02:00
def register():
Pool.register(
2018-01-09 15:53:17 +01:00
invoice.Invoice,
2012-10-17 11:18:43 +02:00
module='account_invoice_consecutive', type_='model')