diff --git a/src/pages/Domande/components/AllDomandeTable/index.js b/src/pages/Domande/components/AllDomandeTable/index.js index 1b8bf9e..e21bfff 100644 --- a/src/pages/Domande/components/AllDomandeTable/index.js +++ b/src/pages/Domande/components/AllDomandeTable/index.js @@ -35,7 +35,10 @@ const AllDomandeTable = ({ openDialogFn, updaterString = '' }) => { useEffect(() => { setLocalAsyncRequest(true); ApplicationService.getApplications(getCallback, errGetCallbacks, [ - ['statuses', ['SUBMIT', 'EVALUATION', 'SOCCORSO']] + ['statuses', [ + 'SUBMIT', 'EVALUATION', 'SOCCORSO', + 'APPOINTMENT', 'NDG', 'ADMISSIBLE', 'TECHNICAL_EVALUATION' + ]] ]); }, [updaterString]); diff --git a/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js b/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js index a208487..f6b5bd3 100644 --- a/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js +++ b/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js @@ -40,7 +40,11 @@ const BeneficiarioDomandeTable = () => { setLocalAsyncRequest(true); ApplicationService.getApplications(getApplCallback, errGetApplCallback, [ ['companyId', chosenCompanyId], - ['statuses', ['SOCCORSO', 'APPROVED', 'REJECTED', 'EVALUATION', 'SUBMIT']] // 'NDG', 'ADMISSIBLE', 'APPOINTMENT' + ['statuses', [ + 'SOCCORSO', 'APPROVED', 'REJECTED', 'EVALUATION', 'SUBMIT', + 'APPOINTMENT', 'NDG', 'ADMISSIBLE', 'TECHNICAL_EVALUATION' + ] + ] // 'NDG', 'ADMISSIBLE', 'APPOINTMENT' ]); } }, [chosenCompanyId, companies]);