16 lines
349 B
Python
16 lines
349 B
Python
from trytond.pool import Pool
|
|
from . import user, routes
|
|
|
|
|
|
__all__ = ['register', 'routes']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
user.UserApplication,
|
|
module='sale_don_confiao', type_='model')
|
|
Pool.register(
|
|
module='sale_don_confiao', type_='wizard')
|
|
Pool.register(
|
|
module='sale_don_confiao', type_='report')
|