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