From 1336d6219e0b2985886cf6376c7adc6708ed4236 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Mon, 9 Jun 2025 13:39:23 +0200 Subject: [PATCH 01/12] - removed status 'close' from request that was preventing creating new amendments; --- src/pages/DomandaEditPreInstructor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/DomandaEditPreInstructor/index.js b/src/pages/DomandaEditPreInstructor/index.js index b90787c..d48278a 100644 --- a/src/pages/DomandaEditPreInstructor/index.js +++ b/src/pages/DomandaEditPreInstructor/index.js @@ -968,7 +968,7 @@ const DomandaEditPreInstructor = () => { storeSet('setAsyncRequest'); ApplicationEvaluationService.getEvaluationVersionByApplId(entityId, getVersion, errGetVersion); AmendmentsService.getSoccorsoByApplId(entityId, getAmendmentsCallback, errGetAmendmentsCallback, [ - ['statuses', ['AWAITING', 'RESPONSE_RECEIVED', 'CLOSE']] + ['statuses', ['AWAITING', 'RESPONSE_RECEIVED']] ]); }, [id]); From 0894823c10c156ab1656059d463d2d5f60af6367 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Thu, 26 Jun 2025 10:26:14 +0200 Subject: [PATCH 02/12] - fixed disabled note field for instructor; --- src/pages/DomandaEditInstructorManager/index.js | 2 +- src/pages/DomandaEditPreInstructor/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/DomandaEditInstructorManager/index.js b/src/pages/DomandaEditInstructorManager/index.js index 8601ddb..1c41c99 100644 --- a/src/pages/DomandaEditInstructorManager/index.js +++ b/src/pages/DomandaEditInstructorManager/index.js @@ -596,7 +596,7 @@ const DomandaEditInstructorManager = () => { const shouldDisableField = useCallback((fieldName) => { return !['EVALUATION', 'ADMISSIBLE'].includes(data.applicationStatus) - || (['ADMISSIBLE'].includes(data.applicationStatus) && fieldName !== 'criteria') + || (['ADMISSIBLE', 'TECHNICAL_EVALUATION'].includes(data.applicationStatus) && !['criteria', 'note'].includes(fieldName)) || (fieldName === 'files' && !isEmpty(data.amendmentDetails)) }, [data.applicationStatus]); diff --git a/src/pages/DomandaEditPreInstructor/index.js b/src/pages/DomandaEditPreInstructor/index.js index d48278a..dd69b96 100644 --- a/src/pages/DomandaEditPreInstructor/index.js +++ b/src/pages/DomandaEditPreInstructor/index.js @@ -595,7 +595,7 @@ const DomandaEditPreInstructor = () => { const shouldDisableField = useCallback((fieldName) => { return !['EVALUATION', 'ADMISSIBLE'].includes(data.applicationStatus) - || (['ADMISSIBLE'].includes(data.applicationStatus) && !['criteria', 'note'].includes(fieldName)) + || (['ADMISSIBLE', 'TECHNICAL_EVALUATION'].includes(data.applicationStatus) && !['criteria', 'note'].includes(fieldName)) || (fieldName === 'files' && !isEmpty(data.amendmentDetails)) }, [data.applicationStatus]); From 7ea6f579afc9901557762616361df22748245ee1 Mon Sep 17 00:00:00 2001 From: Noemi Date: Thu, 26 Jun 2025 10:49:29 +0200 Subject: [PATCH 03/12] add button scarica graduatoria --- .../components/AllBandiPreInstructorTableAsync/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js b/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js index 4f5b400..67b90f1 100644 --- a/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js +++ b/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js @@ -88,6 +88,7 @@ const AllBandiPreInstructorTableAsync = () => { const actionsBodyTemplate = (rowData) => { return