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)}