trytonpsk-dash_sale/__init__.py

17 lines
397 B
Python
Raw Normal View History

2020-04-08 18:23:00 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2021-07-22 15:43:08 +02:00
from . import sale
from . import dash
2021-08-21 08:08:02 +02:00
from . import party
2020-04-08 18:23:00 +02:00
def register():
Pool.register(
sale.Sale,
2021-04-14 22:05:23 +02:00
sale.AppDelivery,
sale.AppSaleOrder,
2021-04-14 20:11:26 +02:00
dash.DashApp,
2021-08-21 08:08:02 +02:00
party.Party,
2021-03-31 23:17:46 +02:00
module='dash_sale', type_='model')