trytonpsk-dash_sale/__init__.py

18 lines
445 B
Python

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