- added updating status for initiating evaluation process;

- fixed issues with displaying and calcuating decimals in appl form;
This commit is contained in:
Vitalii Kiiko
2025-01-29 11:00:55 +01:00
parent 2187e4a36d
commit 457194812b
15 changed files with 449 additions and 51 deletions

View File

@@ -668,13 +668,15 @@ const DomandaEditPreInstructor = () => {
</div>
<div>
<h3>{__('Documenti allegati', 'gepafin')}</h3>
<ListOfFiles
files={data.files}
updateFn={updateEvaluationValue}
shouldDisableFieldFn={(name) => shouldDisableField(name) || evaluationShouldBeBlocked(data)}
name="files"
ndg={data.ndg}
applicationId={id}/>
{!isEmpty(data.files)
? <ListOfFiles
files={data.files}
updateFn={updateEvaluationValue}
shouldDisableFieldFn={(name) => shouldDisableField(name) || evaluationShouldBeBlocked(data)}
name="files"
ndg={data.ndg}
applicationId={id}/>
: <p>{__('Nessun documento allegato', 'gepafin')}</p>}
</div>
</div>
</div>