trytond-stock_supply_sale/__init__.py

16 lines
528 B
Python

# This file is part stock_supply_sale module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool
from .purchase_request import *
def register():
Pool.register(
PurchaseRequest,
CreatePurchaseRequestSaleWizardStart,
module='stock_supply_sale', type_='model')
Pool.register(
PurchaseRequest,
CreatePurchaseRequestSaleWizard,
module='stock_supply_sale', type_='wizard')