17 lines
363 B
Python
17 lines
363 B
Python
from trytond.pool import Pool
|
|
from . import product
|
|
from . import machine
|
|
|
|
__all__ = ['register']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
product.Product,
|
|
machine.Machine,
|
|
module='smart_vision', type_='model')
|
|
Pool.register(
|
|
module='smart_vision', type_='wizard')
|
|
Pool.register(
|
|
module='smart_vision', type_='report')
|