- updated;
This commit is contained in:
@@ -273,7 +273,7 @@ export const resendEmailLabelsByType = {
|
||||
|
||||
export const rejectionReasons = [
|
||||
{ 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 = {
|
||||
|
||||
@@ -1006,7 +1006,7 @@ const DomandaEditInstructorManager = () => {
|
||||
&& APP_HUB_ID === 't7jh5wfg9QXylNaTZkPoE')
|
||||
? <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())
|
||||
|| evaluationBlockedForUser(data)}
|
||||
onClick={doNewSoccorso}
|
||||
@@ -1023,7 +1023,7 @@ const DomandaEditInstructorManager = () => {
|
||||
{data.id
|
||||
? <Button
|
||||
type="button"
|
||||
disabled={data.status === 'CLOSE' || evaluationBlockedForUser(data)}
|
||||
disabled={['EXPIRED', 'CLOSE'].includes(data.status) || evaluationBlockedForUser(data)}
|
||||
onClick={() => doSaveDraft()}
|
||||
outlined
|
||||
label={__('Salva bozza valutazione', 'gepafin')}
|
||||
|
||||
@@ -68,6 +68,10 @@ const ApplicationInfo = ({ data }) => {
|
||||
<span>{__('Importo richiesto', 'gepafin')}</span>
|
||||
<span>{getNumberWithCurrency(data.amountRequested)}</span>
|
||||
</p>
|
||||
<p className="appPageSection__pMeta">
|
||||
<span>{__('Importo deliberato', 'gepafin')}</span>
|
||||
<span>{getNumberWithCurrency(data.amountAccepted)}</span>
|
||||
</p>
|
||||
<p className="appPageSection__pMeta">
|
||||
<span>{__('Scadenza Valutazione', 'gepafin')}</span>
|
||||
<span>{getDateFromISOstring(data.evaluationEndDate)}</span>
|
||||
|
||||
@@ -1006,7 +1006,7 @@ const DomandaEditPreInstructor = () => {
|
||||
&& APP_HUB_ID === 't7jh5wfg9QXylNaTZkPoE')
|
||||
? <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())
|
||||
|| evaluationBlockedForUser(data)}
|
||||
onClick={doNewSoccorso}
|
||||
@@ -1023,7 +1023,7 @@ const DomandaEditPreInstructor = () => {
|
||||
{data.id
|
||||
? <Button
|
||||
type="button"
|
||||
disabled={data.status === 'CLOSE' || evaluationBlockedForUser(data)}
|
||||
disabled={['EXPIRED', 'CLOSE'].includes(data.status) || evaluationBlockedForUser(data)}
|
||||
onClick={() => doSaveDraft()}
|
||||
outlined
|
||||
label={__('Salva bozza valutazione', 'gepafin')}
|
||||
|
||||
Reference in New Issue
Block a user