trytond-stock_origin_sale/__init__.py
2018-02-21 16:12:27 +01:00

15 lines
416 B
Python

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