Skip to content

Commit

Permalink
status:add more statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
gitcliff committed Jan 31, 2024
1 parent 679a52f commit 3f867c1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/queue-list/laboratory-patient-list.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ const LaboratoryPatientList: React.FC<LaboratoryPatientListProps> = () => {
const [activatedOnOrAfterDate, setActivatedOnOrAfterDate] = useState("");

const [filter, setFilter] = useState<
"All" | "EXCEPTION" | "RECEIVED" | "COMPLETED" | "IN_PROGRESS"
| "All"
| "EXCEPTION"
| "RECEIVED"
| "COMPLETED"
| "IN_PROGRESS"
| "ON_HOLD"
| "DECLINED"
>("All");

const { workListEntries, isLoading } = useGetOrdersWorklist(
Expand Down Expand Up @@ -219,6 +225,8 @@ const LaboratoryPatientList: React.FC<LaboratoryPatientListProps> = () => {
"IN_PROGRESS",
"COMPLETED",
"EXCEPTION",
"ON_HOLD",
"DECLINED",
]}
onChange={handleOrderStatusChange}
/>
Expand Down

0 comments on commit 3f867c1

Please sign in to comment.