Skip to content

Commit

Permalink
Resolved Order Entry conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
abertnamanya committed Jul 2, 2023
1 parent b2aae45 commit c4405c0
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Binary file added react-ui/public/images/success-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions react-ui/src/components/addOrder/OrderSuccessMessage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React, {Component} from 'react';
import {Button, Row} from "@carbon/react";

class OrderSuccessMessage extends Component {
render() {
return (
<div className="orderLegendBody">
<div className="orderEntrySuccessMsg">
<img
src={`images/success-icon.png`}
alt="Order Entry saved successfully"
width="120"
height="120"
/>
<h4>Save successful</h4>
<Row>
<Button className="printBarCodeBtn">Print Barcode</Button>
</Row>
<Row>
<Button className="placeAnotherOrderBtn" kind="tertiary">Place same site order</Button>
</Row>
</div>
</div>
);
}
}

export default OrderSuccessMessage;

0 comments on commit c4405c0

Please sign in to comment.