trytond-carrier_send_shipme.../__init__.py

18 lines
569 B
Python
Raw Normal View History

2014-05-27 14:29:09 +02:00
# This file is part of carrier_send_shipments_seurvalencia module for Tryton.
2014-03-26 11:36:26 +01:00
# The COPYRIGHT file at the top level of this repository contains
# copyright notices and license terms. the full
from trytond.pool import Pool
2018-09-10 09:50:23 +02:00
from . import api
from . import shipment
from . import manifest
2014-03-26 11:36:26 +01:00
def register():
Pool.register(
2018-09-10 09:50:23 +02:00
api.CarrierApi,
shipment.ShipmentOut,
2014-03-26 11:36:26 +01:00
module='carrier_send_shipments_seurvalencia', type_='model')
2014-05-27 14:29:09 +02:00
Pool.register(
2018-09-10 09:50:23 +02:00
manifest.CarrierManifest,
2014-05-27 14:29:09 +02:00
module='carrier_send_shipments_seurvalencia', type_='wizard')