Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions src/components/QuestionnaireForm/QuestionnaireForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1454,26 +1454,20 @@ export default class QuestionnaireForm extends Component {
<button className="btn submit-button" onClick={this.loadPreviousForm.bind(this)}>
Load Previous Form
</button>
<button className="btn submit-button" onClick={this.sendQuestionnaireResponseToPayer.bind(this)}>
Send to Payer
</button>
<button className="btn submit-button" onClick={this.outputResponse.bind(this, "in-progress")}>
Save to EHR
</button>
<button className="btn submit-button" onClick={this.outputResponse.bind(this, "completed")}>
Proceed To Prior Auth
Submit REMS Bundle
</button>
</div>)
}
else {
if (this.props.adFormCompleted) {
return (
<div className="submit-button-panel">
<button className="btn submit-button" onClick={this.sendQuestionnaireResponseToPayer.bind(this)}>
Send to Payer
</button>
<button className="btn submit-button" onClick={this.outputResponse.bind(this, "completed")}>
Proceed To Prior Auth
Submit REMS Bundle
</button>
</div>
)
Expand Down