# 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 dash from . import product def register(): Pool.register( sale.Sale, sale.AppDelivery, sale.AppSaleOrder, sale.AppTakeOrder, sale.AppOrderViewer, dash.DashApp, product.Product, module='dash_sale', type_='model')