Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 74x 5x 69x 3x 66x 2x 64x 4x 60x 5x 55x 4x 51x 3x 48x 3x 45x 3x 42x 3x 74x | export function mapSubmissionTypeBasedOnActionFormTitle(actionFormTitle) {
let mappedTitle;
if (actionFormTitle.includes("CHIP SPA Details")) {
mappedTitle = "chip spa";
} else if (actionFormTitle.includes("Medicaid SPA Details")) {
mappedTitle = "medicaid spa";
} else if (actionFormTitle.includes("Temporary Extension Request Details")) {
mappedTitle = "temporary extension";
} else if (
actionFormTitle.includes("1915(b)(4) FFS Selective Contracting Initial Waiver Details")
) {
mappedTitle = "1915b(4) initial waiver";
} else if (
actionFormTitle.includes("1915(b)(4) FFS Selective Contracting Renewal Waiver Details")
) {
mappedTitle = "1915b(4) waiver renewal";
} else if (
actionFormTitle.includes("1915(b)(4) FFS Selective Contracting Waiver Amendment Details")
) {
mappedTitle = "1915b(4) waiver amendment";
} else if (actionFormTitle.includes("1915(b) Comprehensive (Capitated) Initial Waiver Details")) {
mappedTitle = "1915b capitated inital";
} else if (actionFormTitle.includes("1915(b) Comprehensive (Capitated) Renewal Waiver Details")) {
mappedTitle = "1915b capitated renewal";
} else if (
actionFormTitle.includes("1915(b) Comprehensive (Capitated) Waiver Amendment Details")
) {
mappedTitle = "1915b capitated amendment";
} else if (actionFormTitle.includes("1915(c) Appendix K Amendment Details")) {
mappedTitle = "1915c app-k";
}
return mappedTitle;
}
|