10 lines
207 B
Python
10 lines
207 B
Python
from trytond.pool import Pool
|
|
from . import product
|
|
from . import sale
|
|
|
|
def register():
|
|
Pool.register(
|
|
product.Template,
|
|
sale.SaleLine,
|
|
module='optical_equipment', type_='model')
|