trytond-sale_shipment_dua/__init__.py
Sim? Albert i Beltran e07c46b95f Initial commit
#034261
2018-11-26 14:17:48 +01:00

13 lines
396 B
Python

# This file is part sale_shipment_dua 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 carrier
from . import sale
def register():
Pool.register(
carrier.Carrier,
sale.Sale,
sale.SaleLine,
module='sale_shipment_dua', type_='model')