-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfield_options.rb
More file actions
188 lines (174 loc) · 4.13 KB
/
field_options.rb
File metadata and controls
188 lines (174 loc) · 4.13 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
module FieldOptions
LOAN_PURPOSE = [
'Buy an existing business',
'Expansion',
'Buying out a partner',
'Marketing/advertising',
'Working capital',
'Refinancing / consolidating debt',
'Remodeling an existing location',
'Purchasing equipment',
'Repairing equipment',
'Other',
"COVID Relief",
"I don't know",
"Factoring Invoices",
"Payroll",
"Lease or Mortgage Interest",
"Utilities"
]
INDUSTRY = [
'Farm Goods Distribution',
'Farming & Cultivation',
'Livestock',
'Architecture & Landscape Design',
'Creative/Marketing',
'Software Development',
'Strategy/General Consulting',
'Credit Restoration/Protection',
'Currency Exchange, Transfer',
'Financial Accounting',
'Financial/Wealth Advisory',
'Insurance Agency',
'Investment Management',
'Lending, Cash Advance, Factoring',
'Securities Brokerage or Investment Banking',
'Tax Accounting & Consulting',
'Catering & Service',
'Restaurant, Cafe or Bar-Lounge',
'Dentistry',
'Other Health Services',
'Physicians/Doctors Office',
'Veterinary Clinic',
'Cleaning',
'HVAC & Plumbing',
'Interior Decoration & Design',
'Other Home Services',
'Adult, Senior & Assisted Living Center',
'Hotel, Motel, Lodging',
'Ecommerce',
'Online Services',
'Apparel & Accessories',
'Automotive & Bicycle',
'Construction & Materials',
'Manufacturing Electronics',
'Manufacturing Other Merchandise',
'Online',
'Print Publication & Magazines',
'Direct Selling & Multi-Level Marketing',
'Law Firms & Attorneys',
'Personal Consulting, Training & Coaching',
'Religious Evangelism & Related Services',
'Adult & Mature',
'Alcohol',
'Apparel & Fashion',
'Automotive Supply & Repair',
'Automotive, ATV, Motor Homes & Motorcycles',
'Bicycles & Sporting Equipment',
'Building Materials & Home Furnishing',
'Retailing Electronics',
'Firearms',
'Florists',
'Garden/Retail Nursery',
'Grocery and Baked Goods',
'Retailing Other Merchandise',
'General Contractor',
'Investment/Speculative',
'Landscaping, Home Repair & Upkeep',
'Fitness Training, Scuba & Skydiving',
'Gambling',
'Other Recreation',
'Astrology & Horoscopes',
'Beauty Salon, Barber, Spa',
'Cemeteries & Funeral Homes',
'Child Day Care',
'Gyms & Fitness Clubs',
'Laundry & Garment',
'Oil & Natural Gas',
'Printing',
'Aviation',
'Shuttles, Buses & Personal',
'Travel Planning & Services',
'Trucking & Commercial'
]
ENTITY_TYPE = [
'C Corporation',
'S Corporation',
'LLC',
'LLP/Partnership',
'Sole Proprietorship',
'Nonprofit Corporation / 501c3'
]
BUSINESS_LOCATION_TYPE = [
'Home',
'Office',
'Vehicle',
'Storefront'
]
BUSINESS_LOCATION_RENT_OR_OWN = [
'Rent',
'Own'
]
OFFICER_IN_LAWSUIT = [
'No previous or current legal actions',
'Current or previous criminal case',
'Pending or current liability judgment',
'Other current or previous legal action against this business'
]
DEBT_TYPE = [
'Cash Advance',
'Term Loan',
'Business Credit Cards',
'Equipment Finance',
'Invoice Financing',
'Line of Credit',
'Private Debt',
'Business Mortgage',
'Other'
]
PAYMENT_FREQUENCY = [
'Other',
'Daily',
'Weekly',
'Bi-Weekly',
'Monthly'
]
CREDIT_SCORE = [
'Excellent (700+)',
'Excellent (660-699)',
'Good (640-659)',
'Good (620-639)',
'Fair (580-619)',
'Fair (550-579)',
'Challenged (Below 550)'
]
LAST_BANKRUPTCY = [
'No bankruptcies',
'Discharged 7+ years ago',
'Discharged 4-7 years ago',
'Discharged 3-4 years ago',
'Discharged 2-3 years ago',
'Discharged 1-2 years ago',
'Discharged less than a year ago'
]
RESIDENCE_RENT_OR_OWN = [
'Rent',
'Own'
]
CITIZENSHIP = [
'US Citizen',
'Permanent Resident',
'Other'
]
REPAYMENT = [
'Daily',
'Weekly',
'Bi-Weekly',
'Monthly'
]
DECISIONS = [
'preapproved',
'pending',
'declined'
]
end