From b154910d54a3215cd2c66d6e2b8914f5a4e5f00a Mon Sep 17 00:00:00 2001 From: Harshil Date: Tue, 24 Sep 2024 19:16:51 -0500 Subject: [PATCH] 87899 evidence submission form dropdown list (#32054) --- .../claims-status/utils/helpers.js | 100 +++++++++++++----- 1 file changed, 72 insertions(+), 28 deletions(-) diff --git a/src/applications/claims-status/utils/helpers.js b/src/applications/claims-status/utils/helpers.js index ab4105e3df7f..c8308712aef1 100644 --- a/src/applications/claims-status/utils/helpers.js +++ b/src/applications/claims-status/utils/helpers.js @@ -326,14 +326,58 @@ export function groupClaimsByDocsNeeded(list) { } export const DOC_TYPES = [ - { value: 'L029', label: 'Copy of a DD214' }, - { value: 'L450', label: 'STR - Dental - Photocopy' }, - { value: 'L451', label: 'STR - Medical - Photocopy' }, + { + value: 'L014', + label: 'Birth Certificate', + }, + { + value: 'L029', + label: 'Copy of a DD214', + }, + { + value: 'L418', + label: 'Court papers / documents', + }, + { + value: 'L033', + label: 'Death Certificate', + }, + { + value: 'L702', + label: 'Disability Benefits Questionnaire (DBQ)', + }, + { + value: 'L037', + label: 'Divorce Decree', + }, + { + value: 'L703', + label: 'Goldmann Perimetry Chart/Field Of Vision Chart', + }, + { + value: 'L051', + label: 'Marriage Certificate', + }, { value: 'L049', label: 'Medical Treatment Record - Non-Government Facility', }, - { value: 'L034', label: 'Military Personnel Record' }, + { + value: 'L034', + label: 'Military Personnel Record', + }, + { + value: 'L070', + label: 'Photographs', + }, + { + value: 'L139', + label: 'VA Form 21-686c - Declaration of Status of Dependents', + }, + { + value: 'L133', + label: 'VA Form 21-674 - Request for Approval of School Attendance', + }, { value: 'L107', label: 'VA Form 21-4142 - Authorization To Disclose Information', @@ -344,56 +388,56 @@ export const DOC_TYPES = [ 'VA Form 21-4142a - General Release for Medical Provider Information', }, { - value: 'L229', + value: 'L117', label: - 'VA Form 21-0781a - Statement in Support of Claim for PTSD Secondary to Personal Assault', - }, - { - value: 'L228', - label: 'VA Form 21-0781 - Statement in Support of Claim for PTSD', + 'VA Form 21-4502 - Application for Automobile or Other Conveyance and Adaptive Equipment Under 38 U.S.C. 3901-3904', }, { value: 'L149', label: 'VA Form 21-8940 - Veterans Application for Increased Compensation Based on Un-employability', }, + { + value: 'L159', + label: + 'VA Form 26-4555 - Application in Acquiring Specially Adapted Housing or Special Home Adaptation Grant', + }, { value: 'L115', label: 'VA Form 21-4192 - Request for Employment Information in Connection with Claim for Disability', }, { - value: 'L159', + value: 'L222', label: - 'VA Form 26-4555 - Application in Acquiring Specially Adapted Housing or Special Home Adaptation Grant', + 'VA Form 21-0779 - Request for Nursing Home Information in Connection with Claim for Aid & Attendance', }, { - value: 'L117', + value: 'L102', label: - 'VA Form 21-4502 - Application for Automobile or Other Conveyance and Adaptive Equipment Under 38 U.S.C. 3901-3904', + 'VA Form 21-2680 - Examination for Housebound Status or Permanent Need for Regular Aid & Attendance', }, { - value: 'L139', - label: 'VA Form 21-686c - Declaration of Status of Dependents', + value: 'L228', + label: 'VA Form 21-0781 - Statement in Support of Claim for PTSD', }, { - value: 'L133', - label: 'VA Form 21-674 - Request for Approval of School Attendance', + value: 'L229', + label: + 'VA Form 21-0781a - Statement in Support of Claim for PTSD Secondary to Personal Assault', }, { - value: 'L102', - label: - 'VA Form 21-2680 - Examination for Housebound Status or Permanent Need for Regular Aid & Attendance', + value: 'L023', + label: 'Other Correspondence', }, { - value: 'L222', - label: - 'VA Form 21-0779 - Request for Nursing Home Information in Connection with Claim for Aid & Attendance', + value: 'L450', + label: 'STR - Dental - Photocopy', + }, + { + value: 'L451', + label: 'STR - Medical - Photocopy', }, - { value: 'L702', label: 'Disability Benefits Questionnaire (DBQ)' }, - { value: 'L703', label: 'Goldmann Perimetry Chart/Field Of Vision Chart' }, - { value: 'L070', label: 'Photographs' }, - { value: 'L023', label: 'Other Correspondence' }, ]; export function getDocTypeDescription(docType) {