trytond-office_sequence/__init__.py

12 lines
295 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 ir
def register():
Pool.register(
ir.Sequence,
ir.SequencePeriod,
module='office_sequence', type_='model')