WIP CA_BC_ETFTable decoder

This commit is contained in:
Patrick Fic
2021-04-15 14:09:22 -07:00
parent 97ce408974
commit 42a1d3a9a7
11 changed files with 199 additions and 5 deletions

View File

@@ -23,6 +23,7 @@ const INITIAL_STATE = {
reportCenter: { ...baseModal },
partsReceive: { ...baseModal },
contractFinder: { ...baseModal },
ca_bc_eftTableConvert: { ...baseModal },
};
const modalsReducer = (state = INITIAL_STATE, action) => {

View File

@@ -70,3 +70,8 @@ export const selectContractFinder = createSelector(
[selectModals],
(modals) => modals.contractFinder
);
export const selectCaBcEtfTableConvert = createSelector(
[selectModals],
(modals) => modals.ca_bc_eftTableConvert
);