trytond-carrier_zip/__init__.py

14 lines
378 B
Python
Raw Permalink Normal View History

2014-04-11 15:45:11 +02:00
# This file is part of the carrier_zip module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2020-12-07 12:38:27 +01:00
from . import carrier
from . import sale
2014-04-11 15:45:11 +02:00
def register():
Pool.register(
2020-12-07 12:38:27 +01:00
carrier.CarrierSelection,
sale.Sale,
2014-04-11 15:45:11 +02:00
module='carrier_zip', type_='model')