trytondo-sale_opportunity_m.../__init__.py
camilogs 2bcaad6087
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: Se crea modelo pending_call y se asignan sus relaciones
2023-08-07 12:43:44 -05:00

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.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')