- contract functionality;

This commit is contained in:
Vitalii Kiiko
2025-11-06 09:19:55 +01:00
parent be190b9c99
commit b929f4def1
12 changed files with 1118 additions and 13 deletions

View File

@@ -76,6 +76,12 @@ const getBandoLabel = (status) => {
case 'TECHNICAL_EVALUATION_REJECTED':
return __('Respinto Tec-Fin', 'gepafin');
case 'AWAITING_CONTRACT':
return __('Awaiting contract', 'gepafin');
case 'CONTRACT_SIGNED':
return __('Contract signed', 'gepafin');
default:
return '';

View File

@@ -75,6 +75,12 @@ const getBandoSeverity = (status) => {
case 'TECHNICAL_EVALUATION_REJECTED':
return 'danger';
case 'AWAITING_CONTRACT':
return 'warning';
case 'CONTRACT_SIGNED':
return 'success';
default:
return 'info';
}