updating the status to under review if the pqq overall score is more than 50%

This commit is contained in:
2025-11-27 18:55:25 +05:30
parent 67da5b57e6
commit 030ec9225d
2 changed files with 39 additions and 1 deletions

View File

@@ -25,4 +25,20 @@ export const STEPPER = {
export const LAST_QUESTION_ID = {
Q_ID: 55
}
export const ACTIVITY_INTERNAL_STATUS = {
APPROVED: 'Approved',
REJECTED: 'Rejected',
DRAFT: 'Draft',
UNDER_REVIEW: 'Under-Review',
PQQ_FAILED: 'PQQ Failed'
}
export const ACTIVITY_DISPLAY_STATUS = {
APPROVED: 'Approved',
REJECTED: 'Rejected',
DRAFT: 'Draft',
UNDER_REVIEW: 'Under-Review',
PQQ_FAILED: 'PQQ Failed'
}