-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply filters to blue button download (#33398)
* MHV-60263: Blue button medications complete * MHV-60263: blue button reducer adjustments * MHV-60263: Blue Button appointments pdf done * MHV-60263: Blue button demographics pdf done * MHV-60263: BB military service pdf done * MHV-60263: Blue button account summary complete * MHV-60263: Unit tests fixed * MHV-60263: Removed comments * MHV-60263: Comment cleanup * MHV-60263: Unit test fix * mhv-61927 filters stored in redux * mhv-61927 apply filters to download * MHV-61927 removed date filter for allergies/conditions --------- Co-authored-by: Matthew Wright <[email protected]>
- Loading branch information
1 parent
fb59971
commit cfa6903
Showing
8 changed files
with
499 additions
and
101 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Actions } from '../util/actionTypes'; | ||
|
||
export const updateReportDateRange = (fromDate, toDate) => async dispatch => { | ||
dispatch({ | ||
type: Actions.Downloads.SET_DATE_FILTER, | ||
response: `${fromDate}<->${toDate}`, | ||
}); | ||
}; | ||
|
||
export const updateReportRecordType = selectedTypes => async dispatch => { | ||
dispatch({ | ||
type: Actions.Downloads.SET_RECORD_FILTER, | ||
response: selectedTypes, | ||
}); | ||
}; |
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.