Register classes

This commit is contained in:
Raimon Esteve 2018-09-10 09:50:23 +02:00
parent 4d72449459
commit 0f52298115
1 changed files with 6 additions and 6 deletions

View File

@ -2,16 +2,16 @@
# The COPYRIGHT file at the top level of this repository contains
# copyright notices and license terms. the full
from trytond.pool import Pool
from .api import *
from .shipment import *
from .manifest import *
from . import api
from . import shipment
from . import manifest
def register():
Pool.register(
CarrierApi,
ShipmentOut,
api.CarrierApi,
shipment.ShipmentOut,
module='carrier_send_shipments_seurvalencia', type_='model')
Pool.register(
CarrierManifest,
manifest.CarrierManifest,
module='carrier_send_shipments_seurvalencia', type_='wizard')