trytonpsk-dash_sale/__init__.py

21 lines
538 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
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,
2022-03-31 15:52:57 +02:00
sale.AppTakeOrder,
2022-05-02 16:18:12 +02:00
sale.AppOrderViewer,
sale.AppSaleCallCenter,
2022-08-07 23:47:26 +02:00
sale.AppSelfServiceSale,
2023-04-13 21:31:28 +02:00
sale.AppSaleTurn,
2023-04-19 21:15:59 +02:00
sale.AppOrderNotification,
2021-04-14 20:11:26 +02:00
dash.DashApp,
2021-03-31 23:17:46 +02:00
module='dash_sale', type_='model')