trytond-sale_shipment_returns/__init__.py
2014-11-07 14:41:55 +01:00

15 lines
455 B
Python

# This file is part sale_shipment_returns 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
from .sale import *
from .shipment import *
def register():
Pool.register(
Sale,
module='sale_shipment_returns', type_='model')
Pool.register(
CreateSaleReturn,
module='sale_shipment_returns', type_='wizard')