From a5356ba1c305b5973b2a43880e76a1a5916c66ff Mon Sep 17 00:00:00 2001
From: Vitalii Kiiko
Date: Thu, 20 Mar 2025 14:20:17 +0100
Subject: [PATCH] - added displaying three new properties on evaluation page;
---
.../components/ApplicationInfo/index.js | 29 ++++++++++++++-----
1 file changed, 21 insertions(+), 8 deletions(-)
diff --git a/src/pages/DomandaEditPreInstructor/components/ApplicationInfo/index.js b/src/pages/DomandaEditPreInstructor/components/ApplicationInfo/index.js
index 86dc19f..956f333 100644
--- a/src/pages/DomandaEditPreInstructor/components/ApplicationInfo/index.js
+++ b/src/pages/DomandaEditPreInstructor/components/ApplicationInfo/index.js
@@ -6,6 +6,7 @@ import { isNil } from 'ramda';
import getDateTimeFromISOstring from '../../../../helpers/getDateTimeFromISOstring';
import getDateFromISOstring from '../../../../helpers/getDateFromISOstring';
import getBandoLabel from '../../../../helpers/getBandoLabel';
+import getNumberWithCurrency from '../../../../helpers/getNumberWithCurrency';
const APP_HUB_ID = process.env.REACT_APP_HUB_ID;
@@ -35,14 +36,6 @@ const ApplicationInfo = ({ data }) => {
{__('Bando', 'gepafin')}
{data.callName}
-
- {__('Referente Aziendale', 'gepafin')}
- {data.beneficiary}
-
-
- {__('Azienda Beneficiaria', 'gepafin')}
- {data.companyName}
-
{__('Data ricezione', 'gepafin')}
{getDateTimeFromISOstring(data.submissionDate)}
@@ -55,6 +48,26 @@ const ApplicationInfo = ({ data }) => {
{__('Assegnato a', 'gepafin')}
{data.assignedUserName}
+
+ {__('Referente Aziendale', 'gepafin')}
+ {data.beneficiary}
+
+
+ {__('Azienda Beneficiaria', 'gepafin')}
+ {data.companyName}
+
+
+ {__('Partita IVA', 'gepafin')}
+ {data.companyVatNumber}
+
+
+ {__('Codice ATECO', 'gepafin')}
+ {data.companyCodiceAteco}
+
+
+ {__('Importo richiesto', 'gepafin')}
+ {getNumberWithCurrency(data.amountRequested)}
+
{__('Scadenza Valutazione', 'gepafin')}
{getDateFromISOstring(data.evaluationEndDate)}