- updated;
This commit is contained in:
@@ -273,7 +273,7 @@ export const resendEmailLabelsByType = {
|
|||||||
|
|
||||||
export const rejectionReasons = [
|
export const rejectionReasons = [
|
||||||
{ label: 'Documentazione incompleta', text: 'la stessa è stata sottoposta ad istruttoria di ammissibilità con esito negativo.' },
|
{ label: 'Documentazione incompleta', text: 'la stessa è stata sottoposta ad istruttoria di ammissibilità con esito negativo.' },
|
||||||
{ label: 'Altri motivi', text: 'altri motivi' }
|
{ label: 'Altri motivi', text: 'la stessa è stata esclusa dalla graduatoria definitiva' }
|
||||||
]
|
]
|
||||||
|
|
||||||
export const amendmentRequestedDocs = {
|
export const amendmentRequestedDocs = {
|
||||||
|
|||||||
@@ -1006,7 +1006,7 @@ const DomandaEditInstructorManager = () => {
|
|||||||
&& APP_HUB_ID === 't7jh5wfg9QXylNaTZkPoE')
|
&& APP_HUB_ID === 't7jh5wfg9QXylNaTZkPoE')
|
||||||
? <Button
|
? <Button
|
||||||
type="button"
|
type="button"
|
||||||
disabled={!data.id || data.status === 'CLOSE'
|
disabled={!data.id || ['EXPIRED', 'CLOSE'].includes(data.status)
|
||||||
|| (!['SOCCORSO', 'AWAITING_TECHNICAL_EVALUATION'].includes(data.applicationStatus) && shouldDisableNewSoccorso())
|
|| (!['SOCCORSO', 'AWAITING_TECHNICAL_EVALUATION'].includes(data.applicationStatus) && shouldDisableNewSoccorso())
|
||||||
|| evaluationBlockedForUser(data)}
|
|| evaluationBlockedForUser(data)}
|
||||||
onClick={doNewSoccorso}
|
onClick={doNewSoccorso}
|
||||||
@@ -1023,7 +1023,7 @@ const DomandaEditInstructorManager = () => {
|
|||||||
{data.id
|
{data.id
|
||||||
? <Button
|
? <Button
|
||||||
type="button"
|
type="button"
|
||||||
disabled={data.status === 'CLOSE' || evaluationBlockedForUser(data)}
|
disabled={['EXPIRED', 'CLOSE'].includes(data.status) || evaluationBlockedForUser(data)}
|
||||||
onClick={() => doSaveDraft()}
|
onClick={() => doSaveDraft()}
|
||||||
outlined
|
outlined
|
||||||
label={__('Salva bozza valutazione', 'gepafin')}
|
label={__('Salva bozza valutazione', 'gepafin')}
|
||||||
|
|||||||
@@ -68,6 +68,10 @@ const ApplicationInfo = ({ data }) => {
|
|||||||
<span>{__('Importo richiesto', 'gepafin')}</span>
|
<span>{__('Importo richiesto', 'gepafin')}</span>
|
||||||
<span>{getNumberWithCurrency(data.amountRequested)}</span>
|
<span>{getNumberWithCurrency(data.amountRequested)}</span>
|
||||||
</p>
|
</p>
|
||||||
|
<p className="appPageSection__pMeta">
|
||||||
|
<span>{__('Importo deliberato', 'gepafin')}</span>
|
||||||
|
<span>{getNumberWithCurrency(data.amountAccepted)}</span>
|
||||||
|
</p>
|
||||||
<p className="appPageSection__pMeta">
|
<p className="appPageSection__pMeta">
|
||||||
<span>{__('Scadenza Valutazione', 'gepafin')}</span>
|
<span>{__('Scadenza Valutazione', 'gepafin')}</span>
|
||||||
<span>{getDateFromISOstring(data.evaluationEndDate)}</span>
|
<span>{getDateFromISOstring(data.evaluationEndDate)}</span>
|
||||||
|
|||||||
@@ -1006,7 +1006,7 @@ const DomandaEditPreInstructor = () => {
|
|||||||
&& APP_HUB_ID === 't7jh5wfg9QXylNaTZkPoE')
|
&& APP_HUB_ID === 't7jh5wfg9QXylNaTZkPoE')
|
||||||
? <Button
|
? <Button
|
||||||
type="button"
|
type="button"
|
||||||
disabled={!data.id || data.status === 'CLOSE'
|
disabled={!data.id || ['EXPIRED', 'CLOSE'].includes(data.status)
|
||||||
|| (!['SOCCORSO', 'AWAITING_TECHNICAL_EVALUATION'].includes(data.applicationStatus) && shouldDisableNewSoccorso())
|
|| (!['SOCCORSO', 'AWAITING_TECHNICAL_EVALUATION'].includes(data.applicationStatus) && shouldDisableNewSoccorso())
|
||||||
|| evaluationBlockedForUser(data)}
|
|| evaluationBlockedForUser(data)}
|
||||||
onClick={doNewSoccorso}
|
onClick={doNewSoccorso}
|
||||||
@@ -1023,7 +1023,7 @@ const DomandaEditPreInstructor = () => {
|
|||||||
{data.id
|
{data.id
|
||||||
? <Button
|
? <Button
|
||||||
type="button"
|
type="button"
|
||||||
disabled={data.status === 'CLOSE' || evaluationBlockedForUser(data)}
|
disabled={['EXPIRED', 'CLOSE'].includes(data.status) || evaluationBlockedForUser(data)}
|
||||||
onClick={() => doSaveDraft()}
|
onClick={() => doSaveDraft()}
|
||||||
outlined
|
outlined
|
||||||
label={__('Salva bozza valutazione', 'gepafin')}
|
label={__('Salva bozza valutazione', 'gepafin')}
|
||||||
|
|||||||
Reference in New Issue
Block a user