chore: Se renombra carpeta util y archivo municipalities
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
0
selections/__init__.py
Normal file
0
selections/__init__.py
Normal file
9
selections/call_results.py
Normal file
9
selections/call_results.py
Normal file
@@ -0,0 +1,9 @@
|
||||
class CallResults():
|
||||
@staticmethod
|
||||
def get_call_results():
|
||||
call_results = [
|
||||
('missed_call', 'Missed call'),
|
||||
('answered_call', 'Answered call'),
|
||||
]
|
||||
|
||||
return call_results
|
||||
9
selections/call_types.py
Normal file
9
selections/call_types.py
Normal file
@@ -0,0 +1,9 @@
|
||||
class CallTypes():
|
||||
@staticmethod
|
||||
def get_call_types():
|
||||
call_types = [
|
||||
('first_call', 'First call'),
|
||||
('followup_call', 'Follow up call'),
|
||||
]
|
||||
|
||||
return call_types
|
||||
11
selections/interest.py
Normal file
11
selections/interest.py
Normal file
@@ -0,0 +1,11 @@
|
||||
class Interest():
|
||||
@staticmethod
|
||||
def get_interest_levels():
|
||||
interest_levels = [
|
||||
('0', '0 - No contestó'),
|
||||
('1', '1 - total desinterés'),
|
||||
('2', '2 - Interés intermedio'),
|
||||
('3', '3 - Interés alto, generar venta')
|
||||
]
|
||||
|
||||
return interest_levels
|
||||
Reference in New Issue
Block a user