admin_module 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/.rspec +3 -0
  4. data/Gemfile +14 -0
  5. data/Guardfile +24 -0
  6. data/LICENSE +22 -0
  7. data/README.md +281 -0
  8. data/Rakefile +98 -0
  9. data/admin_module.gemspec +34 -0
  10. data/bin/admin_module +13 -0
  11. data/lib/admin_module.rb +260 -0
  12. data/lib/admin_module/cli.rb +54 -0
  13. data/lib/admin_module/cli/cli_guideline.rb +80 -0
  14. data/lib/admin_module/cli/cli_lock.rb +149 -0
  15. data/lib/admin_module/cli/cli_parameter.rb +66 -0
  16. data/lib/admin_module/cli/cli_task.rb +149 -0
  17. data/lib/admin_module/cli_old.rb +92 -0
  18. data/lib/admin_module/client.rb +146 -0
  19. data/lib/admin_module/command.rb +25 -0
  20. data/lib/admin_module/command/client_access.rb +43 -0
  21. data/lib/admin_module/command/config.rb +310 -0
  22. data/lib/admin_module/command/dc.rb +110 -0
  23. data/lib/admin_module/command/gdl.rb +71 -0
  24. data/lib/admin_module/command/lock.rb +110 -0
  25. data/lib/admin_module/command/ppm.rb +142 -0
  26. data/lib/admin_module/command/rule.rb +77 -0
  27. data/lib/admin_module/command/ruleset.rb +56 -0
  28. data/lib/admin_module/command/snapshot.rb +110 -0
  29. data/lib/admin_module/command/stage.rb +131 -0
  30. data/lib/admin_module/command/task.rb +110 -0
  31. data/lib/admin_module/config_helper.rb +33 -0
  32. data/lib/admin_module/dc.rb +133 -0
  33. data/lib/admin_module/guideline.rb +86 -0
  34. data/lib/admin_module/locks.rb +142 -0
  35. data/lib/admin_module/page_factory.rb +55 -0
  36. data/lib/admin_module/pages.rb +120 -0
  37. data/lib/admin_module/pages/dc_definitions_page.rb +73 -0
  38. data/lib/admin_module/pages/dc_detail_page.rb +187 -0
  39. data/lib/admin_module/pages/guideline_page.rb +35 -0
  40. data/lib/admin_module/pages/guideline_version_page.rb +140 -0
  41. data/lib/admin_module/pages/guidelines_page.rb +59 -0
  42. data/lib/admin_module/pages/guidelines_version_all_page.rb +116 -0
  43. data/lib/admin_module/pages/lock_definition_page.rb +178 -0
  44. data/lib/admin_module/pages/lock_definitions_page.rb +69 -0
  45. data/lib/admin_module/pages/login_page.rb +75 -0
  46. data/lib/admin_module/pages/parameter_page.rb +62 -0
  47. data/lib/admin_module/pages/parameters_page.rb +46 -0
  48. data/lib/admin_module/pages/ppms_page.rb +110 -0
  49. data/lib/admin_module/pages/rule_page.rb +68 -0
  50. data/lib/admin_module/pages/rules_page.rb +74 -0
  51. data/lib/admin_module/pages/ruleset_page.rb +64 -0
  52. data/lib/admin_module/pages/rulesets_page.rb +60 -0
  53. data/lib/admin_module/pages/select_list_syncable.rb +64 -0
  54. data/lib/admin_module/pages/snapshot_definitions_page.rb +73 -0
  55. data/lib/admin_module/pages/snapshot_detail_page.rb +246 -0
  56. data/lib/admin_module/pages/workflow_detail_page.rb +451 -0
  57. data/lib/admin_module/pages/workflow_detail_task_addl_detail_page.rb +172 -0
  58. data/lib/admin_module/pages/workflow_detail_task_mappings_page.rb +163 -0
  59. data/lib/admin_module/pages/workflow_detail_task_screens_page.rb +75 -0
  60. data/lib/admin_module/pages/workflow_details_page.rb +67 -0
  61. data/lib/admin_module/pages/workflow_task_page.rb +107 -0
  62. data/lib/admin_module/pages/workflow_tasks_page.rb +111 -0
  63. data/lib/admin_module/ppms.rb +78 -0
  64. data/lib/admin_module/rake.rb +22 -0
  65. data/lib/admin_module/rake/dc_tasks.rb +185 -0
  66. data/lib/admin_module/rake/deploy_task.rb +59 -0
  67. data/lib/admin_module/rake/gdl_tasks.rb +189 -0
  68. data/lib/admin_module/rake/lock_tasks.rb +189 -0
  69. data/lib/admin_module/rake/parameter_task.rb +86 -0
  70. data/lib/admin_module/rake/ppm_tasks.rb +248 -0
  71. data/lib/admin_module/rake/rule_tasks.rb +157 -0
  72. data/lib/admin_module/rake/snapshot_tasks.rb +223 -0
  73. data/lib/admin_module/rake/stage_tasks.rb +197 -0
  74. data/lib/admin_module/rake/stages_task.rb +197 -0
  75. data/lib/admin_module/rake/task_tasks.rb +189 -0
  76. data/lib/admin_module/rules.rb +50 -0
  77. data/lib/admin_module/rulesets.rb +42 -0
  78. data/lib/admin_module/snapshots.rb +133 -0
  79. data/lib/admin_module/stages.rb +171 -0
  80. data/lib/admin_module/tasks.rb +147 -0
  81. data/lib/admin_module/version.rb +3 -0
  82. data/old_spec/lib/admin_module/cli_configuration_spec.rb +126 -0
  83. data/old_spec/lib/admin_module/cli_create_stage_spec.rb +89 -0
  84. data/old_spec/lib/admin_module/cli_delete_rule_spec.rb +57 -0
  85. data/old_spec/lib/admin_module/cli_deploy_spec.rb +57 -0
  86. data/old_spec/lib/admin_module/cli_export_locks_spec.rb +62 -0
  87. data/old_spec/lib/admin_module/cli_export_stages_spec.rb +62 -0
  88. data/old_spec/lib/admin_module/cli_guidelines_version_all_spec.rb +58 -0
  89. data/old_spec/lib/admin_module/cli_import_locks_spec.rb +153 -0
  90. data/old_spec/lib/admin_module/cli_import_stages_spec.rb +173 -0
  91. data/old_spec/lib/admin_module/cli_modify_locks_spec.rb +128 -0
  92. data/old_spec/lib/admin_module/cli_modify_stages_spec.rb +88 -0
  93. data/old_spec/lib/admin_module/cli_rename_rule_spec.rb +53 -0
  94. data/old_spec/lib/admin_module/cli_rename_ruleset_spec.rb +53 -0
  95. data/old_spec/lib/admin_module/cli_var_spec.rb +41 -0
  96. data/old_spec/lib/admin_module/rake/deploy_task_spec.rb +85 -0
  97. data/old_spec/lib/admin_module/rake/parameter_task_spec.rb +58 -0
  98. data/old_spec/lib/admin_module/rake/rules_task_spec.rb +75 -0
  99. data/spec/data/build/test1.xml +0 -0
  100. data/spec/data/build/test2.xml +1 -0
  101. data/spec/data/import_dcs.yml +31 -0
  102. data/spec/data/import_locks.yml +4 -0
  103. data/spec/data/import_snapshots.yml +35 -0
  104. data/spec/data/import_stages.yml +4 -0
  105. data/spec/data/import_tasks.yml +25 -0
  106. data/spec/data/patch-test.xml +1 -0
  107. data/spec/data/remove_test_del_rule.xml +1 -0
  108. data/spec/data/stages.yml +518 -0
  109. data/spec/data/test_del_rule.xml +1 -0
  110. data/spec/lib/admin_module/admin_module_spec.rb +175 -0
  111. data/spec/lib/admin_module/cli_spec.rb +36 -0
  112. data/spec/lib/admin_module/client_spec.rb +158 -0
  113. data/spec/lib/admin_module/command/config_spec.rb +477 -0
  114. data/spec/lib/admin_module/command/dc_spec.rb +202 -0
  115. data/spec/lib/admin_module/command/gdl_spec.rb +139 -0
  116. data/spec/lib/admin_module/command/lock_spec.rb +207 -0
  117. data/spec/lib/admin_module/command/rule_spec.rb +163 -0
  118. data/spec/lib/admin_module/command/ruleset_spec.rb +124 -0
  119. data/spec/lib/admin_module/command/snapshot_spec.rb +202 -0
  120. data/spec/lib/admin_module/command/stage_spec.rb +259 -0
  121. data/spec/lib/admin_module/command/task_spec.rb +207 -0
  122. data/spec/lib/admin_module/dc_spec.rb +192 -0
  123. data/spec/lib/admin_module/guideline_spec.rb +177 -0
  124. data/spec/lib/admin_module/locks_spec.rb +188 -0
  125. data/spec/lib/admin_module/rules_spec.rb +110 -0
  126. data/spec/lib/admin_module/rulesets_spec.rb +85 -0
  127. data/spec/lib/admin_module/snapshot_spec.rb +192 -0
  128. data/spec/lib/admin_module/stages_spec.rb +179 -0
  129. data/spec/lib/admin_module/tasks_spec.rb +196 -0
  130. data/spec/spec_helper.rb +54 -0
  131. data/spec/support/asserts.rb +13 -0
  132. data/spec/support/data_clearing.rb +28 -0
  133. data/spec/support/dirs.rb +54 -0
  134. data/spec/support/helpers.rb +83 -0
  135. data/spec/support/lock.rb +23 -0
  136. data/spec/support/mocks.rb +213 -0
  137. data/spec/support/snapshot.rb +28 -0
  138. data/spec/support/stage.rb +22 -0
  139. data/spec/support/stage_factory.rb +138 -0
  140. data/spec/support/task.rb +23 -0
  141. metadata +381 -0
File without changes
@@ -0,0 +1 @@
1
+ data
@@ -0,0 +1,31 @@
1
+ ---
2
+ TstDefn1:
3
+ :name: TstDefn1
4
+ :description: TstDefn1 Description
5
+ :delete_options:
6
+ :decision_data: true
7
+ :conditions_with_images: true
8
+ :incomes: true
9
+ :assets: true
10
+ :expenses: true
11
+ :hud1_fields: false
12
+ :payment_schedule: true
13
+ :dts:
14
+ - All Documents Received
15
+ - Approval
16
+ - Denial Reason
17
+ TstDefn2:
18
+ :name: TstDefn2
19
+ :description: TstDefn2 Description
20
+ :delete_options:
21
+ :decision_data: true
22
+ :conditions_with_images: true
23
+ :incomes: true
24
+ :assets: true
25
+ :expenses: true
26
+ :hud1_fields: false
27
+ :payment_schedule: true
28
+ :dts:
29
+ - All Documents Received
30
+ - Approval
31
+ - Denial Reason
@@ -0,0 +1,4 @@
1
+ ---
2
+ TstLock1:
3
+ :name: TstLock1
4
+ :transition_to:
@@ -0,0 +1,35 @@
1
+ ---
2
+ TstDefn1:
3
+ :name: TstDefn1
4
+ :description: ''
5
+ :parameters:
6
+ - Active Ch13 BK
7
+ - Active Ch7 BK
8
+ - Agency Flag
9
+ - Agency Type
10
+ - Amortization Term After Modification
11
+ - App Date
12
+ :dts:
13
+ - Account
14
+ - Additional Days to Submit Docs
15
+ - All Documents Received
16
+ - Ancillary Amount
17
+ - Appeal Decision Expiration Date
18
+ :control_fields: []
19
+ TstDefn2:
20
+ :name: TstDefn2
21
+ :description: ''
22
+ :parameters:
23
+ - 1st Trial Payment Due Amount
24
+ - App Date
25
+ - Customer Qualifies For 60 Month
26
+ :dts:
27
+ - Account
28
+ - All Documents Received
29
+ - Approval
30
+ - Borrower First Name
31
+ :control_fields:
32
+ - Expenses Monthly Total
33
+ - Total Assets
34
+ - Total Stated Income
35
+ - Total Verified Income
@@ -0,0 +1,4 @@
1
+ ---
2
+ TstStage1:
3
+ :name: TstStage1
4
+ :transition_to:
@@ -0,0 +1,25 @@
1
+ ---
2
+ TstTask1:
3
+ :name: TstTask1
4
+ :schedule: To-Do
5
+ :priority: Normal
6
+ :due_days: 2
7
+ :due_hours: 0
8
+ :due_minutes: 00
9
+ :followup:
10
+ :assigned_to: Negotiator
11
+ :fees_assigned: 0.00
12
+ :task_description: TstTask1 task description
13
+ :letter_agreement:
14
+ TstTask2:
15
+ :name: TstTask2
16
+ :schedule: To-Do
17
+ :priority: Normal
18
+ :due_days: 2
19
+ :due_hours: 0
20
+ :due_minutes: 00
21
+ :followup:
22
+ :assigned_to: Negotiator
23
+ :fees_assigned: 0.00
24
+ :task_description: TstTask2 task description
25
+ :letter_agreement:
@@ -0,0 +1 @@
1
+ <GuidelineRoot><Guideline GuidelineID="1" Name="patch-test" Version="1" StartDate="Nov 15 2013 12:00AM"><Rule Id="31" Name="Z-TestDummy"><IfMessages/><ElseMessages/><Condition><Expression><Brace><Compute><Operator>&lt;&gt;</Operator><LeftOperand><PPM Name="Account Name" DataType="Text" Type="APM"/></LeftOperand><RightOperand><PPM Name="Account Name" DataType="Text" Type="APM"/></RightOperand></Compute></Brace></Expression></Condition><IfActions><Assign><AssignTo><DPM Name="Decision"/></AssignTo><AssignValue><Expression><Constant>Fail</Constant></Expression></AssignValue></Assign></IfActions></Rule></Guideline><LOOKUPS></LOOKUPS><Conditions></Conditions><DERIVEDPARAMETERS><DPM Name="Decision" Type="DSM" Order="0" ProductType="6" DataType="Text"/></DERIVEDPARAMETERS></GuidelineRoot>
@@ -0,0 +1 @@
1
+ <GuidelineRoot><Guideline GuidelineID="1" Name="test_del_rule" Version="1" StartDate="Nov 15 2013 12:00AM"><DERIVEDPARAMETERS/></GuidelineRoot>
@@ -0,0 +1,518 @@
1
+ ---
2
+ 001 New File:
3
+ :name: 001 New File
4
+ :transition_to:
5
+ - 005 Application and Eligibility
6
+ - 010 Customer Input
7
+ - 020 Pending Docs
8
+ - 022 Docs Verification
9
+ - 023 Docs Received
10
+ - 025 UW Review and Pre-screen
11
+ - 028 Pending Property Value
12
+ - 030 Trial Period Decision
13
+ - 035 In Trial
14
+ - 040 Trial Complete
15
+ - 045 Pending Mod
16
+ - 050 Mod Resend
17
+ - 052 Escrow Disbursement
18
+ - 055 Pending Activation
19
+ - 057 Pending Re-age/Escrow Set-up
20
+ - 060 Reconsideration Exceptions/Overrides
21
+ - 065 Approved Consideration
22
+ - 090 Mod Activation
23
+ - 095 Exclude Application
24
+ - 096 Withdrawn
25
+ - 097 Declined Appeal Eligible
26
+ - 099 Declined Not Appeal Eligible
27
+ 005 Application and Eligibility:
28
+ :name: 005 Application and Eligibility
29
+ :transition_to:
30
+ - 001 New File
31
+ - 010 Customer Input
32
+ - 020 Pending Docs
33
+ - 022 Docs Verification
34
+ - 023 Docs Received
35
+ - 025 UW Review and Pre-screen
36
+ - 028 Pending Property Value
37
+ - 030 Trial Period Decision
38
+ - 035 In Trial
39
+ - 040 Trial Complete
40
+ - 045 Pending Mod
41
+ - 050 Mod Resend
42
+ - 052 Escrow Disbursement
43
+ - 055 Pending Activation
44
+ - 057 Pending Re-age/Escrow Set-up
45
+ - 060 Reconsideration Exceptions/Overrides
46
+ - 065 Approved Consideration
47
+ - 090 Mod Activation
48
+ - 093 Incomplete Application
49
+ - 095 Exclude Application
50
+ - 096 Withdrawn
51
+ - 097 Declined Appeal Eligible
52
+ - 098 Appeal Declined
53
+ - 099 Declined Not Appeal Eligible
54
+ - 105 Second Review-Hard Decline
55
+ - 120 Second Review-Pending Docs
56
+ - 125 Second Review-UW Review and Pre-screen
57
+ - 130 Second Review-Trial Period Decision
58
+ - 135 Second Review-In Trial
59
+ - 145 Second Review-Pending Mod
60
+ - 205 Appeal Hard Decline
61
+ - 210 Appeal Customer Input
62
+ - 220 Appeal Pending Docs
63
+ - 222 Appeal Docs Verification
64
+ - 223 Appeal Docs Received
65
+ - 225 Appeal-UW Review and Pre-screen
66
+ - 226 Appeal Preliminary NPV
67
+ - 227 Appeal Pending Appraisal Request
68
+ - 228 Appeal Pending Property Val
69
+ - 230 Appeal Trial Period Decision
70
+ - 305 Appeal 2nd Review-Hard Decline
71
+ - 320 Appeal 2nd Review-Pending Docs
72
+ - 325 Appeal 2nd Review-UW Review and Pre-screen
73
+ - 326 Appeal 2nd Review-Preliminary NPV
74
+ - 327 Appeal 2nd Review-Pending Appraisal Request
75
+ - 328 Appeal 2nd Review-Pending Property Val
76
+ - 330 Appeal 2nd Review-Trial Period Decision
77
+ 010 Customer Input:
78
+ :name: 010 Customer Input
79
+ :transition_to:
80
+ - 001 New File
81
+ - 020 Pending Docs
82
+ - 060 Reconsideration Exceptions/Overrides
83
+ - 096 Withdrawn
84
+ - 099 Declined Not Appeal Eligible
85
+ - 105 Second Review-Hard Decline
86
+ 020 Pending Docs:
87
+ :name: 020 Pending Docs
88
+ :transition_to:
89
+ - 001 New File
90
+ - 022 Docs Verification
91
+ - 060 Reconsideration Exceptions/Overrides
92
+ - 096 Withdrawn
93
+ - 120 Second Review-Pending Docs
94
+ 022 Docs Verification:
95
+ :name: 022 Docs Verification
96
+ :transition_to:
97
+ - 001 New File
98
+ - 020 Pending Docs
99
+ - 023 Docs Received
100
+ - 025 UW Review and Pre-screen
101
+ - 060 Reconsideration Exceptions/Overrides
102
+ - 096 Withdrawn
103
+ - 120 Second Review-Pending Docs
104
+ 023 Docs Received:
105
+ :name: 023 Docs Received
106
+ :transition_to:
107
+ - 001 New File
108
+ - 025 UW Review and Pre-screen
109
+ - 060 Reconsideration Exceptions/Overrides
110
+ - 096 Withdrawn
111
+ - 120 Second Review-Pending Docs
112
+ 025 UW Review and Pre-screen:
113
+ :name: 025 UW Review and Pre-screen
114
+ :transition_to:
115
+ - 001 New File
116
+ - 020 Pending Docs
117
+ - 028 Pending Property Value
118
+ - 030 Trial Period Decision
119
+ - 060 Reconsideration Exceptions/Overrides
120
+ - 096 Withdrawn
121
+ - 125 Second Review-UW Review and Pre-screen
122
+ 028 Pending Property Value:
123
+ :name: 028 Pending Property Value
124
+ :transition_to:
125
+ - 001 New File
126
+ - 030 Trial Period Decision
127
+ - 060 Reconsideration Exceptions/Overrides
128
+ - 096 Withdrawn
129
+ - 125 Second Review-UW Review and Pre-screen
130
+ 030 Trial Period Decision:
131
+ :name: 030 Trial Period Decision
132
+ :transition_to:
133
+ - 001 New File
134
+ - 025 UW Review and Pre-screen
135
+ - 035 In Trial
136
+ - 060 Reconsideration Exceptions/Overrides
137
+ - 096 Withdrawn
138
+ - 130 Second Review-Trial Period Decision
139
+ 035 In Trial:
140
+ :name: 035 In Trial
141
+ :transition_to:
142
+ - 001 New File
143
+ - 025 UW Review and Pre-screen
144
+ - 030 Trial Period Decision
145
+ - 040 Trial Complete
146
+ - 060 Reconsideration Exceptions/Overrides
147
+ - 096 Withdrawn
148
+ - 099 Declined Not Appeal Eligible
149
+ - 135 Second Review-In Trial
150
+ - 226 Appeal Preliminary NPV
151
+ - 230 Appeal Trial Period Decision
152
+ 040 Trial Complete:
153
+ :name: 040 Trial Complete
154
+ :transition_to:
155
+ - 001 New File
156
+ - 025 UW Review and Pre-screen
157
+ - 045 Pending Mod
158
+ - 060 Reconsideration Exceptions/Overrides
159
+ - 096 Withdrawn
160
+ - 135 Second Review-In Trial
161
+ 045 Pending Mod:
162
+ :name: 045 Pending Mod
163
+ :transition_to:
164
+ - 001 New File
165
+ - 025 UW Review and Pre-screen
166
+ - 050 Mod Resend
167
+ - 052 Escrow Disbursement
168
+ - 055 Pending Activation
169
+ - 060 Reconsideration Exceptions/Overrides
170
+ - 096 Withdrawn
171
+ - 145 Second Review-Pending Mod
172
+ 050 Mod Resend:
173
+ :name: 050 Mod Resend
174
+ :transition_to:
175
+ - 001 New File
176
+ - 052 Escrow Disbursement
177
+ - 055 Pending Activation
178
+ - 060 Reconsideration Exceptions/Overrides
179
+ - 096 Withdrawn
180
+ - 099 Declined Not Appeal Eligible
181
+ - 145 Second Review-Pending Mod
182
+ 052 Escrow Disbursement:
183
+ :name: 052 Escrow Disbursement
184
+ :transition_to:
185
+ - 001 New File
186
+ - 055 Pending Activation
187
+ - 096 Withdrawn
188
+ - 145 Second Review-Pending Mod
189
+ 055 Pending Activation:
190
+ :name: 055 Pending Activation
191
+ :transition_to:
192
+ - 001 New File
193
+ - 057 Pending Re-age/Escrow Set-up
194
+ - 060 Reconsideration Exceptions/Overrides
195
+ - 096 Withdrawn
196
+ - 145 Second Review-Pending Mod
197
+ 057 Pending Re-age/Escrow Set-up:
198
+ :name: 057 Pending Re-age/Escrow Set-up
199
+ :transition_to:
200
+ - 001 New File
201
+ - 090 Mod Activation
202
+ - 096 Withdrawn
203
+ - 145 Second Review-Pending Mod
204
+ 060 Reconsideration Exceptions/Overrides:
205
+ :name: 060 Reconsideration Exceptions/Overrides
206
+ :transition_to:
207
+ - 001 New File
208
+ - 065 Approved Consideration
209
+ - 095 Exclude Application
210
+ - 096 Withdrawn
211
+ - 097 Declined Appeal Eligible
212
+ - 098 Appeal Declined
213
+ - 099 Declined Not Appeal Eligible
214
+ 065 Approved Consideration:
215
+ :name: 065 Approved Consideration
216
+ :transition_to:
217
+ - 001 New File
218
+ - 005 Application and Eligibility
219
+ - 010 Customer Input
220
+ - 020 Pending Docs
221
+ - 022 Docs Verification
222
+ - 023 Docs Received
223
+ - 025 UW Review and Pre-screen
224
+ - 028 Pending Property Value
225
+ - 030 Trial Period Decision
226
+ - 035 In Trial
227
+ - 040 Trial Complete
228
+ - 045 Pending Mod
229
+ - 050 Mod Resend
230
+ - 052 Escrow Disbursement
231
+ - 055 Pending Activation
232
+ - 057 Pending Re-age/Escrow Set-up
233
+ - 105 Second Review-Hard Decline
234
+ - 120 Second Review-Pending Docs
235
+ - 125 Second Review-UW Review and Pre-screen
236
+ - 130 Second Review-Trial Period Decision
237
+ - 135 Second Review-In Trial
238
+ - 145 Second Review-Pending Mod
239
+ - 205 Appeal Hard Decline
240
+ - 210 Appeal Customer Input
241
+ - 220 Appeal Pending Docs
242
+ - 222 Appeal Docs Verification
243
+ - 223 Appeal Docs Received
244
+ - 225 Appeal-UW Review and Pre-screen
245
+ - 226 Appeal Preliminary NPV
246
+ - 227 Appeal Pending Appraisal Request
247
+ - 228 Appeal Pending Property Val
248
+ - 230 Appeal Trial Period Decision
249
+ - 305 Appeal 2nd Review-Hard Decline
250
+ - 320 Appeal 2nd Review-Pending Docs
251
+ - 325 Appeal 2nd Review-UW Review and Pre-screen
252
+ - 326 Appeal 2nd Review-Preliminary NPV
253
+ - 327 Appeal 2nd Review-Pending Appraisal Request
254
+ - 328 Appeal 2nd Review-Pending Property Val
255
+ - 330 Appeal 2nd Review-Trial Period Decision
256
+ 090 Mod Activation:
257
+ :name: 090 Mod Activation
258
+ :transition_to:
259
+ - 001 New File
260
+ - 095 Exclude Application
261
+ - 096 Withdrawn
262
+ 093 Incomplete Application:
263
+ :name: 093 Incomplete Application
264
+ :transition_to:
265
+ - 001 New File
266
+ - 022 Docs Verification
267
+ - 060 Reconsideration Exceptions/Overrides
268
+ 095 Exclude Application:
269
+ :name: 095 Exclude Application
270
+ :transition_to:
271
+ - 001 New File
272
+ - 060 Reconsideration Exceptions/Overrides
273
+ - 096 Withdrawn
274
+ 096 Withdrawn:
275
+ :name: 096 Withdrawn
276
+ :transition_to:
277
+ - 001 New File
278
+ - 030 Trial Period Decision
279
+ - 052 Escrow Disbursement
280
+ - 057 Pending Re-age/Escrow Set-up
281
+ - 060 Reconsideration Exceptions/Overrides
282
+ - 099 Declined Not Appeal Eligible
283
+ - 205 Appeal Hard Decline
284
+ - 210 Appeal Customer Input
285
+ - 220 Appeal Pending Docs
286
+ - 222 Appeal Docs Verification
287
+ - 223 Appeal Docs Received
288
+ - 225 Appeal-UW Review and Pre-screen
289
+ - 226 Appeal Preliminary NPV
290
+ - 227 Appeal Pending Appraisal Request
291
+ - 228 Appeal Pending Property Val
292
+ - 230 Appeal Trial Period Decision
293
+ 097 Declined Appeal Eligible:
294
+ :name: 097 Declined Appeal Eligible
295
+ :transition_to:
296
+ - 001 New File
297
+ - 005 Application and Eligibility
298
+ - 010 Customer Input
299
+ - 020 Pending Docs
300
+ - 025 UW Review and Pre-screen
301
+ - 030 Trial Period Decision
302
+ - 035 In Trial
303
+ - 040 Trial Complete
304
+ - 045 Pending Mod
305
+ - 050 Mod Resend
306
+ - 055 Pending Activation
307
+ - 060 Reconsideration Exceptions/Overrides
308
+ - 065 Approved Consideration
309
+ - 090 Mod Activation
310
+ - 095 Exclude Application
311
+ - 096 Withdrawn
312
+ - 098 Appeal Declined
313
+ - 099 Declined Not Appeal Eligible
314
+ - 205 Appeal Hard Decline
315
+ - 210 Appeal Customer Input
316
+ - 226 Appeal Preliminary NPV
317
+ 098 Appeal Declined:
318
+ :name: 098 Appeal Declined
319
+ :transition_to:
320
+ - 001 New File
321
+ - 060 Reconsideration Exceptions/Overrides
322
+ 099 Declined Not Appeal Eligible:
323
+ :name: 099 Declined Not Appeal Eligible
324
+ :transition_to:
325
+ - 001 New File
326
+ - 060 Reconsideration Exceptions/Overrides
327
+ - 096 Withdrawn
328
+ 105 Second Review-Hard Decline:
329
+ :name: 105 Second Review-Hard Decline
330
+ :transition_to:
331
+ - 001 New File
332
+ - 010 Customer Input
333
+ - 060 Reconsideration Exceptions/Overrides
334
+ - 097 Declined Appeal Eligible
335
+ - 099 Declined Not Appeal Eligible
336
+ 120 Second Review-Pending Docs:
337
+ :name: 120 Second Review-Pending Docs
338
+ :transition_to:
339
+ - 001 New File
340
+ - 022 Docs Verification
341
+ - 060 Reconsideration Exceptions/Overrides
342
+ - 093 Incomplete Application
343
+ - 096 Withdrawn
344
+ - 097 Declined Appeal Eligible
345
+ - 099 Declined Not Appeal Eligible
346
+ 125 Second Review-UW Review and Pre-screen:
347
+ :name: 125 Second Review-UW Review and Pre-screen
348
+ :transition_to:
349
+ - 001 New File
350
+ - 028 Pending Property Value
351
+ - 030 Trial Period Decision
352
+ - 060 Reconsideration Exceptions/Overrides
353
+ - 097 Declined Appeal Eligible
354
+ - 099 Declined Not Appeal Eligible
355
+ 130 Second Review-Trial Period Decision:
356
+ :name: 130 Second Review-Trial Period Decision
357
+ :transition_to:
358
+ - 001 New File
359
+ - 035 In Trial
360
+ - 060 Reconsideration Exceptions/Overrides
361
+ - 097 Declined Appeal Eligible
362
+ 135 Second Review-In Trial:
363
+ :name: 135 Second Review-In Trial
364
+ :transition_to:
365
+ - 001 New File
366
+ - 040 Trial Complete
367
+ - 060 Reconsideration Exceptions/Overrides
368
+ - 099 Declined Not Appeal Eligible
369
+ 145 Second Review-Pending Mod:
370
+ :name: 145 Second Review-Pending Mod
371
+ :transition_to:
372
+ - 001 New File
373
+ - 052 Escrow Disbursement
374
+ - 055 Pending Activation
375
+ - 060 Reconsideration Exceptions/Overrides
376
+ - 099 Declined Not Appeal Eligible
377
+ 205 Appeal Hard Decline:
378
+ :name: 205 Appeal Hard Decline
379
+ :transition_to:
380
+ - 001 New File
381
+ - 060 Reconsideration Exceptions/Overrides
382
+ - 096 Withdrawn
383
+ - 210 Appeal Customer Input
384
+ - 305 Appeal 2nd Review-Hard Decline
385
+ 210 Appeal Customer Input:
386
+ :name: 210 Appeal Customer Input
387
+ :transition_to:
388
+ - 001 New File
389
+ - 060 Reconsideration Exceptions/Overrides
390
+ - 096 Withdrawn
391
+ - 220 Appeal Pending Docs
392
+ - 225 Appeal-UW Review and Pre-screen
393
+ - 305 Appeal 2nd Review-Hard Decline
394
+ 220 Appeal Pending Docs:
395
+ :name: 220 Appeal Pending Docs
396
+ :transition_to:
397
+ - 001 New File
398
+ - 060 Reconsideration Exceptions/Overrides
399
+ - 096 Withdrawn
400
+ - 222 Appeal Docs Verification
401
+ - 225 Appeal-UW Review and Pre-screen
402
+ - 320 Appeal 2nd Review-Pending Docs
403
+ 222 Appeal Docs Verification:
404
+ :name: 222 Appeal Docs Verification
405
+ :transition_to:
406
+ - 001 New File
407
+ - 060 Reconsideration Exceptions/Overrides
408
+ - 096 Withdrawn
409
+ - 220 Appeal Pending Docs
410
+ - 223 Appeal Docs Received
411
+ - 225 Appeal-UW Review and Pre-screen
412
+ - 320 Appeal 2nd Review-Pending Docs
413
+ 223 Appeal Docs Received:
414
+ :name: 223 Appeal Docs Received
415
+ :transition_to:
416
+ - 001 New File
417
+ - 060 Reconsideration Exceptions/Overrides
418
+ - 096 Withdrawn
419
+ - 225 Appeal-UW Review and Pre-screen
420
+ - 320 Appeal 2nd Review-Pending Docs
421
+ 225 Appeal-UW Review and Pre-screen:
422
+ :name: 225 Appeal-UW Review and Pre-screen
423
+ :transition_to:
424
+ - 001 New File
425
+ - 060 Reconsideration Exceptions/Overrides
426
+ - 096 Withdrawn
427
+ - 220 Appeal Pending Docs
428
+ - 226 Appeal Preliminary NPV
429
+ - 228 Appeal Pending Property Val
430
+ - 230 Appeal Trial Period Decision
431
+ - 325 Appeal 2nd Review-UW Review and Pre-screen
432
+ 226 Appeal Preliminary NPV:
433
+ :name: 226 Appeal Preliminary NPV
434
+ :transition_to:
435
+ - 001 New File
436
+ - 035 In Trial
437
+ - 060 Reconsideration Exceptions/Overrides
438
+ - 096 Withdrawn
439
+ - 227 Appeal Pending Appraisal Request
440
+ - 230 Appeal Trial Period Decision
441
+ - 326 Appeal 2nd Review-Preliminary NPV
442
+ 227 Appeal Pending Appraisal Request:
443
+ :name: 227 Appeal Pending Appraisal Request
444
+ :transition_to:
445
+ - 001 New File
446
+ - 035 In Trial
447
+ - 060 Reconsideration Exceptions/Overrides
448
+ - 096 Withdrawn
449
+ - 228 Appeal Pending Property Val
450
+ - 327 Appeal 2nd Review-Pending Appraisal Request
451
+ 228 Appeal Pending Property Val:
452
+ :name: 228 Appeal Pending Property Val
453
+ :transition_to:
454
+ - 001 New File
455
+ - 035 In Trial
456
+ - 060 Reconsideration Exceptions/Overrides
457
+ - 096 Withdrawn
458
+ - 230 Appeal Trial Period Decision
459
+ - 328 Appeal 2nd Review-Pending Property Val
460
+ 230 Appeal Trial Period Decision:
461
+ :name: 230 Appeal Trial Period Decision
462
+ :transition_to:
463
+ - 001 New File
464
+ - 035 In Trial
465
+ - 060 Reconsideration Exceptions/Overrides
466
+ - 096 Withdrawn
467
+ - 330 Appeal 2nd Review-Trial Period Decision
468
+ 305 Appeal 2nd Review-Hard Decline:
469
+ :name: 305 Appeal 2nd Review-Hard Decline
470
+ :transition_to:
471
+ - 001 New File
472
+ - 060 Reconsideration Exceptions/Overrides
473
+ - 098 Appeal Declined
474
+ - 210 Appeal Customer Input
475
+ 320 Appeal 2nd Review-Pending Docs:
476
+ :name: 320 Appeal 2nd Review-Pending Docs
477
+ :transition_to:
478
+ - 001 New File
479
+ - 060 Reconsideration Exceptions/Overrides
480
+ - 098 Appeal Declined
481
+ - 222 Appeal Docs Verification
482
+ 325 Appeal 2nd Review-UW Review and Pre-screen:
483
+ :name: 325 Appeal 2nd Review-UW Review and Pre-screen
484
+ :transition_to:
485
+ - 001 New File
486
+ - 060 Reconsideration Exceptions/Overrides
487
+ - 098 Appeal Declined
488
+ - 228 Appeal Pending Property Val
489
+ - 230 Appeal Trial Period Decision
490
+ 326 Appeal 2nd Review-Preliminary NPV:
491
+ :name: 326 Appeal 2nd Review-Preliminary NPV
492
+ :transition_to:
493
+ - 001 New File
494
+ - 060 Reconsideration Exceptions/Overrides
495
+ - 098 Appeal Declined
496
+ - 227 Appeal Pending Appraisal Request
497
+ - 230 Appeal Trial Period Decision
498
+ 327 Appeal 2nd Review-Pending Appraisal Request:
499
+ :name: 327 Appeal 2nd Review-Pending Appraisal Request
500
+ :transition_to:
501
+ - 001 New File
502
+ - 060 Reconsideration Exceptions/Overrides
503
+ - 098 Appeal Declined
504
+ - 228 Appeal Pending Property Val
505
+ 328 Appeal 2nd Review-Pending Property Val:
506
+ :name: 328 Appeal 2nd Review-Pending Property Val
507
+ :transition_to:
508
+ - 001 New File
509
+ - 060 Reconsideration Exceptions/Overrides
510
+ - 098 Appeal Declined
511
+ - 230 Appeal Trial Period Decision
512
+ 330 Appeal 2nd Review-Trial Period Decision:
513
+ :name: 330 Appeal 2nd Review-Trial Period Decision
514
+ :transition_to:
515
+ - 001 New File
516
+ - 035 In Trial
517
+ - 060 Reconsideration Exceptions/Overrides
518
+ - 098 Appeal Declined