This commit is contained in:
a.bouhuolia
2021-02-22 17:00:57 +02:00
21 changed files with 432 additions and 267 deletions

View File

@@ -76,4 +76,17 @@ export function toggleARAgingSummaryFilterDrawer(toggle) {
toggle,
}
};
}
/**
* Toggles display of the AP aging summary filter drawer.
* @param {boolean} toggle -
*/
export function toggleAPAgingSummaryFilterDrawer(toggle) {
return {
type: `${t.AP_AGING_SUMMARY}/${t.DISPLAY_FILTER_DRAWER_TOGGLE}`,
payload: {
toggle,
}
};
}