trytonpsk-dash_sale/__init__.py

13 lines
316 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
import sale
def register():
Pool.register(
sale.Sale,
2021-04-14 19:19:41 +02:00
sale.DashAppDelivery,
sale.DashAppSaleOrder,
2021-03-31 23:17:46 +02:00
module='dash_sale', type_='model')