-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travel Pay/add "status explainer" page and routes (#33482)
* move PR changes to fresh branch * remove commented code, help content now default export, update imports
- Loading branch information
Showing
12 changed files
with
396 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,36 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
|
||
export function HelpTextContent() { | ||
export default function HelpTextContent() { | ||
const BTSSS_PORTAL_URL = 'https://dvagov-btsss.dynamics365portals.us/'; | ||
|
||
return ( | ||
<p> | ||
To manage your travel claims, file a new claim, or learn what your claim | ||
status means, go to our{' '} | ||
<a className="btsss-portal-link" href={BTSSS_PORTAL_URL}> | ||
Beneficiary Travel Self Service System (BTSSS) portal (opens in new tab) | ||
</a> | ||
.<br /> | ||
Or call <va-telephone contact="8555747292" /> from 7 a.m. to 7 p.m. Monday | ||
through Friday. Have your claim number ready to share when you call. | ||
</p> | ||
); | ||
} | ||
|
||
export default function HelpText() { | ||
return ( | ||
<div> | ||
<p>You can use this tool to check the status of your VA travel claims.</p> | ||
<h2>How to manage your claims or get more information</h2> | ||
<HelpTextContent /> | ||
<p> | ||
To manage your travel claims or file a new claim, go to our{' '} | ||
<va-link | ||
external | ||
href={BTSSS_PORTAL_URL} | ||
text="Beneficiary Travel Self Service System (BTSSS) portal" | ||
/> | ||
. | ||
</p> | ||
<p className="vads-u-margin-top--2"> | ||
Or call <va-telephone contact="8555747292" /> from 7 a.m. to 7 p.m. | ||
Monday through Friday. Have your claim number ready to share when you | ||
call. | ||
</p> | ||
<p className="vads-u-margin-top--2"> | ||
<Link | ||
data-testid="status-explainer-link" | ||
to={{ | ||
pathname: '/help', | ||
}} | ||
className="vads-u-display--flex vads-u-align-items--center" | ||
> | ||
What does my claim status mean? | ||
</Link> | ||
</p> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
export const STATUS_GROUPINGS = [ | ||
{ | ||
name: 'Saved or Incomplete', | ||
description: | ||
'These are claims that the Beneficiary Travel office cannot process. Either you have not submitted the claim, or you submitted a claim without required information.', | ||
includes: ['Incomplete', 'Saved'], | ||
}, | ||
{ | ||
name: 'Under VA Review', | ||
description: | ||
'These claims require action from VA. If VA needs more information from you, your Travel Clerk will contact you.', | ||
includes: [ | ||
'In Process', | ||
'Claim Submitted', | ||
'In Manual Review', | ||
'On Hold', | ||
'Appealed', | ||
], | ||
}, | ||
{ | ||
name: 'Closed', | ||
description: | ||
'The Beneficiary Travel office finished their review of your claim and closed it. In some situations you can appeal Beneficiary Travel department’s decision and re-open a claim. If you have questions about why your claim has one of the following statuses, contact your local VAMC and ask for the Beneficiary Travel department.', | ||
includes: [ | ||
'Partial Payment', | ||
'Denied', | ||
'Approved for Payment', | ||
'Submitted for Payment', | ||
'Fiscal Rescinded', | ||
'Claim Paid', | ||
'Payment Canceled', | ||
], | ||
}, | ||
]; | ||
|
||
export const STATUSES = [ | ||
{ | ||
name: 'Incomplete', | ||
description: | ||
'You submitted a claim without required expense information. You must provide the required information for BTSSS to process the claim.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Saved', | ||
description: | ||
'You saved changes to your claim, but you did not submit it to BTSSS for review. Submit the claim so BTSSS can begin processing your claim.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'In Process', | ||
description: | ||
'You submitted a claim, and now BTSSS is reviewing your claim.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Claim Submitted', | ||
description: 'You submitted a claim for a completed appointment.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'In Manual Review', | ||
description: | ||
'Your claim requires a manual review by a Travel Clerk due to one or more of the following reasons:', | ||
reasons: [ | ||
'Your claim includes receipts', | ||
'The mileage is not equal to or less than the calculated limit', | ||
'Your travel does not meet the eligibility requirements. For detailed information about your claim, contact your local VAMC and ask for the Beneficiary Travel department.', | ||
], | ||
}, | ||
{ | ||
name: 'On Hold', | ||
description: | ||
'You must provide the needed information for the claim to be processed. Your Travel Clerk will contact you when they put your claim on hold and tell you what additional information is required. For more information about your claim, please contact your local VAMC and ask for the Beneficiary Travel department.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Appealed', | ||
description: | ||
'You appealed the denial of your claim. The Travel Clerk will review your appeal.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Partial Payment', | ||
description: | ||
'The Travel Clerk determined the claim does not qualify for a full reimbursement. Instead, they approved a partial payment and a Partial Payment letter was sent to you.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Denied', | ||
description: | ||
'The Travel Clerk denied your claim for one or more of the following reasons:', | ||
reasons: [ | ||
'Claim is not eligible for reimbursement.', | ||
'The Travel Clerk could not verify the services in your claim.', | ||
'Your appointment does not exist in VISTA, either because the VA clinic you went to did not enter it or you received care at a non-VA facility.', | ||
'The Travel Clerk sent you a denial letter. The letter contains information on how to appeal the decision.', | ||
], | ||
}, | ||
{ | ||
name: 'Approved for Payment', | ||
description: | ||
'The Travel Clerk approved your claim for payment. The payment is pending and has not been paid.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Submitted for Payment', | ||
description: | ||
'The approved claim payment is assigned to the Financial Service Center (FSC) so that you can receive reimbursement.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Fiscal Rescinded', | ||
description: | ||
'The Financial Service Center (FSC) rejected payment. You will not be able to appeal this decision. For more detailed information about your claim, please contact your local VAMC and ask for the Beneficiary Travel department.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Claim Paid', | ||
description: | ||
'The reimbursement on the approved claim is paid to the submitter. Note that reimbursements for claims submitted by a Caregiver on behalf of a Veteran claimant are sent to the Caregiver’s address or deposited in the Caregiver’s account.', | ||
reasons: null, | ||
}, | ||
{ | ||
name: 'Payment Canceled', | ||
description: | ||
'The fund transfer did not complete because of the claimant’s bank. Payment has been canceled. You may create a new claim and reference the original claim number in the Notes section of the new claim.', | ||
reasons: null, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.