chore: Se renombra carpeta util y archivo municipalities
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-08-05 16:41:13 -05:00
parent b3b897db63
commit 9a7a95e00f
7 changed files with 4 additions and 4 deletions

0
selections/__init__.py Normal file
View File

View 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
View 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
View 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