Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds additional units and route to prescriptions #8075

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions src/Components/Medicine/CreatePrescriptionForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
"INTRATHECAL",
"TRANSDERMAL",
"RECTAL",
"SUBLINGUAL"

Check failure on line 193 in src/Components/Medicine/CreatePrescriptionForm.tsx

View workflow job for this annotation

GitHub Actions / lint

Insert `,`
] as const;
export const PRESCRIPTION_FREQUENCIES = {
STAT: {
Expand Down
1 change: 1 addition & 0 deletions src/Components/Medicine/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { PerformedByModel } from "../HCX/misc";
import { PRESCRIPTION_ROUTES } from "./CreatePrescriptionForm";

export const DOSAGE_UNITS = [
"msg",
cu8code marked this conversation as resolved.
Show resolved Hide resolved
"mg",
"g",
"ml",
Expand Down
3 changes: 2 additions & 1 deletion src/Locale/en/Medicine.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"edit_caution_note": "A new prescription will be added to the consultation with the edited details and the current prescription will be discontinued.",
"reason_for_discontinuation": "Reason for discontinuation",
"reason_for_edit": "Reason for edit",
"PRESCRIPTION_ROUTE_SUBLINGUAL": "Sublingual",
"PRESCRIPTION_ROUTE_ORAL": "Oral",
"PRESCRIPTION_ROUTE_IV": "IV",
"PRESCRIPTION_ROUTE_IM": "IM",
Expand All @@ -60,4 +61,4 @@
"PRESCRIPTION_FREQUENCY_Q4H": "4th hourly",
"PRESCRIPTION_FREQUENCY_QOD": "Alternate day",
"PRESCRIPTION_FREQUENCY_QWK": "Once a week"
}
}
Loading