-
Notifications
You must be signed in to change notification settings - Fork 2
/
constants.py
83 lines (78 loc) · 2.51 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
VIALINK_DISASTER_KEY = "VL_DISASTER"
VIALINK_CALLS_KEY = "VL_CALLS"
TWO32_HELP_CALLS_KEY = "TWO32_HELP_CALLS"
VIALINK_NEEDS_COLUMNS = [
"Concerns/Needs - Disaster Services ",
"Concerns/Needs - Domestic Abuse/IPV",
"Concerns/Needs - Early Childhood Education ",
"Concerns/Needs - Education/ Employment ",
"Concerns/Needs - Environmental Quality & Prtcn ",
"Concerns/Needs - Health Care ",
"Concerns/Needs - Interpersonal",
"Concerns/Needs - Mental Health",
"Concerns/Needs - Mental Health Concerns",
"Concerns/Needs - Organizational Development",
"Concerns/Needs - Other ",
"Concerns/Needs - Other Community Services",
"Concerns/Needs - Protective Service/Abuse",
"Concerns/Needs - Public Asst & Social Insurance",
"Concerns/Needs - Relationship Concerns / Issues ",
"Concerns/Needs - Self-Harm",
"Concerns/Needs - Sexuality",
]
VIALINK_REQUIRED_COLUMNS_CALLS = [
"CallReportNum",
"ReportVersion",
"CallDateAndTimeStart",
"CityName",
"CountyName",
"StateProvince",
"PostalCode",
"Call Information - Program",
"Call Information - Counseling agency MHC BHC etc. ", # extra space at the end is needed
"Call Information - Mental Health Region",
"Call Information - Contact Type",
"Demographics - Age",
"Demographics - Gender",
] + VIALINK_NEEDS_COLUMNS
VIALINK_REQUIRED_COLUMNS_DISASTER = [
"CallReportNum",
"ReportVersion",
"CallDateAndTimeStart",
"CityName",
"CountyName",
"StateProvince",
"PostalCode",
"Client Information - Age Group",
"Client Information - Call Type",
"Client Information - Call Outcome",
"Client Information - Identifies as",
"Concerns/Needs - Concerns/Needs",
"Contact Source - Program ", # ending space is needed
"Needs - Basic Needs Requested",
]
TWO32_HELP_REQUIRED_COLUMNS = [
"CallReportNum",
"ReportVersion",
"CallDateAndTimeStart",
"CityName",
"CountyName",
"StateProvince",
"PostalCode",
"Client Information - Date of Birth",
"Client Information - Call Type",
"Call Outcome - What concerns/needs were identified?",
"Call Outcome - What was the outcome of this call?",
"Client Information - Identifies as",
"Needs - Basic Needs Requested",
]
HANGUP_VALUES = [
"Hangup / Wrong Number",
"Hangup / Wrong #",
"hangup",
"N/A - hangup/wrong#",
"Hangup",
"Hang Up / Wrong Number",
"N/A - hangup/wrong#",
"Hang-up (only if calls ends within initial 30 seconds)",
]