trytonpsk-sale_web_channel/__init__.py

16 lines
420 B
Python

# This file is part of Tryton. 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
import party
import product
import web_channel
def register():
Pool.register(
web_channel.SaleWebChannel,
sale.Sale,
party.Party,
product.Template,
module='sale_web_channel', type_='model')