All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
27 lines
675 B
Python
27 lines
675 B
Python
from trytond.pool import Pool
|
|
from . import prospect
|
|
from . import prospect_trace
|
|
from . import call
|
|
from . import pending_call
|
|
from .locations import city
|
|
from .locations import department
|
|
|
|
__all__ = ['register']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
pending_call.PendingCall,
|
|
call.Call,
|
|
department.Department,
|
|
city.City,
|
|
prospect.ContactMethod,
|
|
prospect.Prospect,
|
|
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')
|