20 lines
501 B
Python
20 lines
501 B
Python
from trytond.pool import Pool
|
|
from . import prospect
|
|
from . import prospect_trace
|
|
from . import call
|
|
|
|
__all__ = ['register']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
call.Call,
|
|
prospect.Prospect,
|
|
prospect.ContactMethod,
|
|
prospect_trace.ProspectTrace,
|
|
module='sale_opportunity_management', type_='model')
|
|
Pool.register(
|
|
module='sale_opportunity_management', type_='wizard')
|
|
Pool.register(
|
|
module='sale_opportunity_management', type_='report')
|