-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(init waiver): init waiver submission forms (#361)
* initial commit * fix type error in new/test form * add additional plan type and modify test form * conditionally run different queries run different queries based on the authority (waiver, spa, chip, etc) * add to the query for waivers this should set one of the dropdown fields in seatool which is mapped to the type table in the db * let's see * fix sql formatting issue * remove and comment out queries the type and sub-type queries will be important in PI 3 when we have more understanding * add a form * fix type errors and add placeholder forms * stuff for the initial form * add breadcrumb nav for capitated waivers 1915b specifically * add additional forms and setup breadcrumbs for contracting forms * update waiver contracting initial form * update waiver forms * ammend in not a word * update waiver renewal form * write initial capitated waiver for to seatool * update contracting initial * reset to master * change waivernumber to id cap-initial * update ammendment * add 1915b to allowed plan types * add waiver renewal form for contracting * make capitated waiver ammendment work for now * take some things out and finish a form * experimenting * lay the groundwork for waiver actions * finish look and feel of issue rai * add contracting waiver ammendment * Move around some components (making this more scoped to the feature of waiver package actions) * make things make sense * Come up with a reusable hook for package actions on waivers * remove package action stuff and use a different branch for that * Try/Catch for the sink... essentially ignoring malformed test records, where the key was undefined * adding try catch for changelog... * Condense getAvailableActions using an OR * Re-enable existing id check on medicaid and chip spas * Enable spa id checks for waivers * revert back to how we were determining state, since all records should have an ID * AC Fixes * whoops * Lint * typos * spacing * typos and crumbs * Correct regex for ids * add initial intake needd to waviers * make additional info optional * Add Waiver Authority to the details page for waivers only * only allow approved original numbers * Fix typo in form causing submission failure * Enforce the 01+ rule * pass around actiontype * add action type support yut * Fix attachment labels * Super refine --------- Co-authored-by: Benjamin Paige <[email protected]> Co-authored-by: Mike Dial <[email protected]>
- Loading branch information
1 parent
3406a9b
commit ef8e91e
Showing
27 changed files
with
1,903 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
export enum PlanType { | ||
MED_SPA = "medicaid spa", | ||
CHIP_SPA = "chip spa", | ||
WAIVER = "waiver", | ||
"1915b" = "1915(b)", | ||
"1915c" = "1915(c)", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
export * from "./medicaid-form"; | ||
export * from "./chip-form"; | ||
export * from "./waiver/capitated/capitated-1915-b-waiver-renewal"; | ||
export * from "./waiver/capitated/capitated-1915-b-waiver-initial"; | ||
export * from "./waiver/capitated/capitated-1915-b-waiver-amendment"; | ||
export * from "./waiver/contracting/contracting-1915-b-waiver-amendment"; | ||
export * from "./waiver/contracting/contracting-1915-b-waiver-initial"; | ||
export * from "./waiver/contracting/contracting-1915-b-waiver-renewal"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.