trytond-stock_supply_direct/__init__.py
2015-04-28 16:35:20 +02:00

14 lines
358 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .product import *
from .move import *
from .purchase import *
def register():
Pool.register(
Template,
Move,
PurchaseRequest,
module='stock_supply_direct', type_='model')