trytond-systemlogics_modula/__init__.py
2015-12-02 10:32:36 +01:00

25 lines
802 B
Python

#This file is part systemlogics_modula 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 .systemlogics import *
from .location import *
from .product import *
from .stock import *
def register():
Pool.register(
SystemLogicsModula,
SystemLogicsModulaEXPOrdiniFile,
Location,
Product,
ShipmentIn,
ShipmentOut,
ShipmentOutSystemlogicsModulaExportStart,
ShipmentInternal,
SystemlogicsModulaArticoliResult,
module='systemlogics_modula', type_='model')
Pool.register(
ShipmentOutSystemlogicsModulaExport,
SystemlogicsModulaArticoli,
module='systemlogics_modula', type_='wizard')