@kenyaemr/esm-imaging-orders-app 4.0.1-pre.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +188 -0
- package/README.md +8 -0
- package/dist/123.js +2 -0
- package/dist/123.js.LICENSE.txt +40 -0
- package/dist/123.js.map +1 -0
- package/dist/144.js +2 -0
- package/dist/144.js.LICENSE.txt +19 -0
- package/dist/144.js.map +1 -0
- package/dist/225.js +1 -0
- package/dist/225.js.map +1 -0
- package/dist/300.js +1 -0
- package/dist/364.js +1 -0
- package/dist/364.js.map +1 -0
- package/dist/372.js +1 -0
- package/dist/372.js.map +1 -0
- package/dist/41.js +2 -0
- package/dist/41.js.LICENSE.txt +9 -0
- package/dist/41.js.map +1 -0
- package/dist/495.js +1 -0
- package/dist/495.js.map +1 -0
- package/dist/606.js +1 -0
- package/dist/606.js.map +1 -0
- package/dist/831.js +2 -0
- package/dist/831.js.LICENSE.txt +5 -0
- package/dist/831.js.map +1 -0
- package/dist/876.js +2 -0
- package/dist/876.js.LICENSE.txt +9 -0
- package/dist/876.js.map +1 -0
- package/dist/913.js +2 -0
- package/dist/913.js.LICENSE.txt +32 -0
- package/dist/913.js.map +1 -0
- package/dist/kenyaemr-esm-imaging-orders-app.js +1 -0
- package/dist/kenyaemr-esm-imaging-orders-app.js.buildmanifest.json +401 -0
- package/dist/kenyaemr-esm-imaging-orders-app.js.map +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +60 -0
- package/dist/main.js.map +1 -0
- package/dist/routes.json +1 -0
- package/jest.config.js +8 -0
- package/package.json +55 -0
- package/src/config-schema.ts +51 -0
- package/src/constants.ts +3 -0
- package/src/declarations.d.ts +6 -0
- package/src/form/imaging-orders/add-imaging-orders/add-imaging-order.scss +44 -0
- package/src/form/imaging-orders/add-imaging-orders/add-imaging-order.workspace.tsx +86 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-order-form.component.tsx +354 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-order-form.scss +79 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-order.ts +19 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-type-search.scss +115 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-type-search.tsx +235 -0
- package/src/form/imaging-orders/add-imaging-orders/useImagingTypes.ts +89 -0
- package/src/form/imaging-orders/api.ts +230 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-icon.component.tsx +40 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-item-tile.component.tsx +96 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-item-tile.scss +72 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-panel.extension.tsx +191 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-panel.scss +74 -0
- package/src/form/imaging-orders/useOrderConfig.ts +48 -0
- package/src/form/imaging-report-form/imaging-report-form.component.tsx +161 -0
- package/src/form/imaging-report-form/imaging-report-form.scss +30 -0
- package/src/form/imaging-report-form/imaging.resource.ts +360 -0
- package/src/header/imagining-header.component.tsx +17 -0
- package/src/header/imagining-header.scss +5 -0
- package/src/hooks/useOrdersWorklist.ts +59 -0
- package/src/hooks/useSearchGroupedResults.ts +27 -0
- package/src/hooks/useSearchResults.ts +51 -0
- package/src/imaging-orders.component.tsx +14 -0
- package/src/imaging-tabs/approved/approved-orders.component.tsx +31 -0
- package/src/imaging-tabs/approved/approved-orders.scss +0 -0
- package/src/imaging-tabs/imaging-tabs.component.tsx +79 -0
- package/src/imaging-tabs/imaging-tabs.scss +5 -0
- package/src/imaging-tabs/orders-not-done/orders-not-done.component.tsx +42 -0
- package/src/imaging-tabs/referred-test/referred-ordered.component.tsx +26 -0
- package/src/imaging-tabs/referred-test/referred-ordered.scss +6 -0
- package/src/imaging-tabs/review-ordered/review-imaging-report-modal/review-imaging-report-dialog.component.tsx +138 -0
- package/src/imaging-tabs/review-ordered/review-imaging-report-modal/review-imaging-report-dialog.scss +5 -0
- package/src/imaging-tabs/review-ordered/review-ordered.component.tsx +28 -0
- package/src/imaging-tabs/review-ordered/review-ordered.scss +0 -0
- package/src/imaging-tabs/test-ordered/pick-imaging-order/add-to-worklist-dialog.component.tsx +94 -0
- package/src/imaging-tabs/test-ordered/pick-imaging-order/add-to-worklist-dialog.resource.ts +137 -0
- package/src/imaging-tabs/test-ordered/pick-imaging-order/add-to-worklist-dialog.scss +38 -0
- package/src/imaging-tabs/test-ordered/reject-order-dialog/radiology-reject-reason.component.tsx +40 -0
- package/src/imaging-tabs/test-ordered/reject-order-dialog/reject-order-dialog.component.tsx +95 -0
- package/src/imaging-tabs/test-ordered/reject-order-dialog/reject-order-dialog.scss +14 -0
- package/src/imaging-tabs/test-ordered/tests-ordered.component.tsx +35 -0
- package/src/imaging-tabs/test-ordered/tests-ordered.scss +13 -0
- package/src/imaging-tabs/test-ordered/transition-patient-new-queue/transition-latest-queue-entry-button.component.tsx +34 -0
- package/src/imaging-tabs/test-ordered/transition-patient-new-queue/transition-latest-queue-entry-button.scss +14 -0
- package/src/imaging-tabs/work-list/work-list.component.tsx +45 -0
- package/src/imaging-tabs/work-list/work-list.resource.ts +150 -0
- package/src/imaging-tabs/work-list/work-list.scss +207 -0
- package/src/index.ts +45 -0
- package/src/left-panel-link.tsx +42 -0
- package/src/root.component.tsx +19 -0
- package/src/routes.json +58 -0
- package/src/shared/imaging.resource.tsx +65 -0
- package/src/shared/ui/common/action-button/action-button.component.tsx +66 -0
- package/src/shared/ui/common/action-button/order-action-extension.component.tsx +21 -0
- package/src/shared/ui/common/grouped-imaging-types.ts +48 -0
- package/src/shared/ui/common/grouped-orders-table.component.tsx +154 -0
- package/src/shared/ui/common/grouped-orders-table.scss +13 -0
- package/src/shared/ui/common/list-order-details.component.tsx +72 -0
- package/src/shared/ui/common/list-order-details.scss +52 -0
- package/src/shared/ui/common/order-detail.component.tsx +14 -0
- package/src/shared/ui/common/order-detail.scss +14 -0
- package/src/types/index.ts +49 -0
- package/src/utils/functions.ts +238 -0
- package/translations/en.json +69 -0
- package/tsconfig.json +5 -0
- package/webpack.config.js +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@use '@carbon/layout';
|
|
2
|
+
@use '@carbon/colors';
|
|
3
|
+
|
|
4
|
+
// TODO: refactor to use esm-style-guide
|
|
5
|
+
.bodyLong01 {
|
|
6
|
+
font-size: 13px !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.displayValue {
|
|
10
|
+
color: #525252;
|
|
11
|
+
font-weight: bold;
|
|
12
|
+
width: layout.$spacing-05;
|
|
13
|
+
height: layout.$spacing-05;
|
|
14
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { type OrderBasketItem } from '@openmrs/esm-patient-common-lib';
|
|
2
|
+
|
|
3
|
+
export interface Concept {
|
|
4
|
+
uuid: string;
|
|
5
|
+
display: string;
|
|
6
|
+
conceptClass: {
|
|
7
|
+
uuid: string;
|
|
8
|
+
display: string;
|
|
9
|
+
name: string;
|
|
10
|
+
};
|
|
11
|
+
answers: [];
|
|
12
|
+
setMembers: [];
|
|
13
|
+
hiNormal: number;
|
|
14
|
+
hiAbsolute: number;
|
|
15
|
+
hiCritical: number;
|
|
16
|
+
lowNormal: number;
|
|
17
|
+
lowAbsolute: number;
|
|
18
|
+
lowCritical: number;
|
|
19
|
+
units: string;
|
|
20
|
+
allowDecimal: boolean;
|
|
21
|
+
displayPrecision: null;
|
|
22
|
+
attributes: [];
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface ImagingOrderBasketItem extends OrderBasketItem {
|
|
26
|
+
testType?: {
|
|
27
|
+
label: string;
|
|
28
|
+
conceptUuid: string;
|
|
29
|
+
};
|
|
30
|
+
urgency?: string;
|
|
31
|
+
instructions?: string;
|
|
32
|
+
orderReason?: string;
|
|
33
|
+
scheduleDate?: Date | string;
|
|
34
|
+
commentsToFulfiller?: string;
|
|
35
|
+
laterality?: string;
|
|
36
|
+
bodySite?: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export type OrderFrequency = CommonImagingValueCoded;
|
|
40
|
+
export type DurationUnit = CommonImagingValueCoded;
|
|
41
|
+
|
|
42
|
+
interface CommonImagingProps {
|
|
43
|
+
value: string;
|
|
44
|
+
default?: boolean;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface CommonImagingValueCoded extends CommonImagingProps {
|
|
48
|
+
valueCoded: string;
|
|
49
|
+
}
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
import { openmrsFetch } from '@openmrs/esm-framework';
|
|
2
|
+
import useSWR from 'swr';
|
|
3
|
+
|
|
4
|
+
export const trimVisitNumber = (visitNumber: string) => {
|
|
5
|
+
if (!visitNumber) {
|
|
6
|
+
return;
|
|
7
|
+
}
|
|
8
|
+
return visitNumber.substring(15);
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const formatWaitTime = (waitTime: string, t) => {
|
|
12
|
+
const num = parseInt(waitTime);
|
|
13
|
+
const hours = num / 60;
|
|
14
|
+
const rhours = Math.floor(hours);
|
|
15
|
+
const minutes = (hours - rhours) * 60;
|
|
16
|
+
const rminutes = Math.round(minutes);
|
|
17
|
+
if (rhours > 0) {
|
|
18
|
+
return rhours + ' ' + `${t('hoursAnd', 'hours and ')}` + rminutes + ' ' + `${t('minutes', 'minutes')}`;
|
|
19
|
+
} else {
|
|
20
|
+
return rminutes + ' ' + `${t('minutes', 'minutes')}`;
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export const getTagColor = (waitTime: string) => {
|
|
25
|
+
const num = parseInt(waitTime);
|
|
26
|
+
if (num <= 30) {
|
|
27
|
+
return 'green';
|
|
28
|
+
} else if (num > 30 && num <= 45) {
|
|
29
|
+
return 'orange';
|
|
30
|
+
} else {
|
|
31
|
+
return 'red';
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export const getStatusColor = (fulfillerStatus: string) => {
|
|
36
|
+
if (fulfillerStatus === 'COMPLETED') {
|
|
37
|
+
return 'green';
|
|
38
|
+
} else if (fulfillerStatus === 'IN_PROGRESS') {
|
|
39
|
+
return 'orange';
|
|
40
|
+
} else {
|
|
41
|
+
return 'red';
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
// TODO: Move these types to ./types/index.ts file
|
|
46
|
+
export interface PatientResource {
|
|
47
|
+
uuid: string;
|
|
48
|
+
display: string;
|
|
49
|
+
identifiers: Identifier[];
|
|
50
|
+
person: Person;
|
|
51
|
+
voided: boolean;
|
|
52
|
+
auditInfo: AuditInfo;
|
|
53
|
+
links: Link[];
|
|
54
|
+
resourceVersion: string;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export interface Identifier {
|
|
58
|
+
display: string;
|
|
59
|
+
uuid: string;
|
|
60
|
+
identifier: string;
|
|
61
|
+
identifierType: IdentifierType;
|
|
62
|
+
location: Location;
|
|
63
|
+
preferred: boolean;
|
|
64
|
+
voided: boolean;
|
|
65
|
+
links: Link[];
|
|
66
|
+
resourceVersion: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface IdentifierType {
|
|
70
|
+
uuid: string;
|
|
71
|
+
display: string;
|
|
72
|
+
links: Link[];
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface Link {
|
|
76
|
+
rel: string;
|
|
77
|
+
uri: string;
|
|
78
|
+
resourceAlias: string;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface Location {
|
|
82
|
+
uuid: string;
|
|
83
|
+
display: string;
|
|
84
|
+
links: Link[];
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface Person {
|
|
88
|
+
uuid: string;
|
|
89
|
+
display: string;
|
|
90
|
+
gender: string;
|
|
91
|
+
age: number;
|
|
92
|
+
birthdate: string;
|
|
93
|
+
birthdateEstimated: boolean;
|
|
94
|
+
dead: boolean;
|
|
95
|
+
deathDate: any;
|
|
96
|
+
causeOfDeath: any;
|
|
97
|
+
preferredName: PreferredName;
|
|
98
|
+
preferredAddress: PreferredAddress;
|
|
99
|
+
names: Name[];
|
|
100
|
+
addresses: Address[];
|
|
101
|
+
attributes: Attribute[];
|
|
102
|
+
voided: boolean;
|
|
103
|
+
auditInfo: AuditInfo;
|
|
104
|
+
birthtime: any;
|
|
105
|
+
deathdateEstimated: boolean;
|
|
106
|
+
causeOfDeathNonCoded: any;
|
|
107
|
+
links: Link[];
|
|
108
|
+
resourceVersion: string;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export interface PreferredName {
|
|
112
|
+
display: string;
|
|
113
|
+
uuid: string;
|
|
114
|
+
givenName: string;
|
|
115
|
+
middleName: string;
|
|
116
|
+
familyName: string;
|
|
117
|
+
familyName2: any;
|
|
118
|
+
voided: boolean;
|
|
119
|
+
links: Link[];
|
|
120
|
+
resourceVersion: string;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export interface PreferredAddress {
|
|
124
|
+
display: any;
|
|
125
|
+
uuid: string;
|
|
126
|
+
preferred: boolean;
|
|
127
|
+
address1: any;
|
|
128
|
+
address2: any;
|
|
129
|
+
cityVillage: any;
|
|
130
|
+
stateProvince: string;
|
|
131
|
+
country: string;
|
|
132
|
+
postalCode: any;
|
|
133
|
+
countyDistrict: string;
|
|
134
|
+
address3: string;
|
|
135
|
+
address4: string;
|
|
136
|
+
address5: string;
|
|
137
|
+
address6: any;
|
|
138
|
+
startDate: any;
|
|
139
|
+
endDate: any;
|
|
140
|
+
latitude: any;
|
|
141
|
+
longitude: any;
|
|
142
|
+
voided: boolean;
|
|
143
|
+
address7: any;
|
|
144
|
+
address8: any;
|
|
145
|
+
address9: any;
|
|
146
|
+
address10: any;
|
|
147
|
+
address11: any;
|
|
148
|
+
address12: any;
|
|
149
|
+
address13: any;
|
|
150
|
+
address14: any;
|
|
151
|
+
address15: any;
|
|
152
|
+
links: Link[];
|
|
153
|
+
resourceVersion: string;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export interface Name {
|
|
157
|
+
display: string;
|
|
158
|
+
uuid: string;
|
|
159
|
+
givenName: string;
|
|
160
|
+
middleName: string;
|
|
161
|
+
familyName: string;
|
|
162
|
+
familyName2: any;
|
|
163
|
+
voided: boolean;
|
|
164
|
+
links: Link[];
|
|
165
|
+
resourceVersion: string;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
export interface Address {
|
|
169
|
+
display: any;
|
|
170
|
+
uuid: string;
|
|
171
|
+
preferred: boolean;
|
|
172
|
+
address1: any;
|
|
173
|
+
address2: any;
|
|
174
|
+
cityVillage: any;
|
|
175
|
+
stateProvince: string;
|
|
176
|
+
country: string;
|
|
177
|
+
postalCode: any;
|
|
178
|
+
countyDistrict: string;
|
|
179
|
+
address3: string;
|
|
180
|
+
address4: string;
|
|
181
|
+
address5: string;
|
|
182
|
+
address6: any;
|
|
183
|
+
startDate: any;
|
|
184
|
+
endDate: any;
|
|
185
|
+
latitude: any;
|
|
186
|
+
longitude: any;
|
|
187
|
+
voided: boolean;
|
|
188
|
+
address7: any;
|
|
189
|
+
address8: any;
|
|
190
|
+
address9: any;
|
|
191
|
+
address10: any;
|
|
192
|
+
address11: any;
|
|
193
|
+
address12: any;
|
|
194
|
+
address13: any;
|
|
195
|
+
address14: any;
|
|
196
|
+
address15: any;
|
|
197
|
+
links: Link[];
|
|
198
|
+
resourceVersion: string;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export interface Attribute {
|
|
202
|
+
display: string;
|
|
203
|
+
uuid: string;
|
|
204
|
+
value: string;
|
|
205
|
+
attributeType: AttributeType;
|
|
206
|
+
voided: boolean;
|
|
207
|
+
links: Link[];
|
|
208
|
+
resourceVersion: string;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
export interface AttributeType {
|
|
212
|
+
uuid: string;
|
|
213
|
+
display: string;
|
|
214
|
+
links: Link[];
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export interface AuditInfo {
|
|
218
|
+
creator: Creator;
|
|
219
|
+
dateCreated: string;
|
|
220
|
+
changedBy: any;
|
|
221
|
+
dateChanged: any;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export interface Creator {
|
|
225
|
+
uuid: string;
|
|
226
|
+
display: string;
|
|
227
|
+
links: Link[];
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export function useGetPatientByUuid(uuid: string) {
|
|
231
|
+
const apiUrl = `/ws/rest/v1/patient/${uuid}?v=full`;
|
|
232
|
+
const { data, error, isLoading } = useSWR<{ data: PatientResource }, Error>(apiUrl, openmrsFetch);
|
|
233
|
+
return {
|
|
234
|
+
patient: data?.data,
|
|
235
|
+
isLoading,
|
|
236
|
+
isError: error,
|
|
237
|
+
};
|
|
238
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"action": "Action",
|
|
3
|
+
"addImagingOrderWorkspaceTitle": "Add Imaging order",
|
|
4
|
+
"additionalInstructions": "Additional instructions",
|
|
5
|
+
"approve": "Approve",
|
|
6
|
+
"approvedOrders": "Approved Orders",
|
|
7
|
+
"bodySite": "Body Site",
|
|
8
|
+
"cancel": "Cancel",
|
|
9
|
+
"commentsToFulfiller": "Comments To Fulfiller",
|
|
10
|
+
"createResponse": "Create Review",
|
|
11
|
+
"date": "DATE",
|
|
12
|
+
"discard": "Discard",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorLoadingTestTypes": "Error occurred when loading test types",
|
|
15
|
+
"errorPicking an order', 'Error Picking an Order": "",
|
|
16
|
+
"errorPicking', 'Error Creating Review": "",
|
|
17
|
+
"errorRejecting order', 'Error Rejecting a order": "",
|
|
18
|
+
"errorSavingReport": "Error occurred while saving the report",
|
|
19
|
+
"groupedOrdersTableDescription": "Orders grouped by patient, expand row to view all orders",
|
|
20
|
+
"imagingOrders": "Imaging Orders",
|
|
21
|
+
"imagingOrderSaveSuccess": "Imaging order saved successfully",
|
|
22
|
+
"imagingOrderSaveSuccessSubtitle": "Imaging order saved successfully. Report transitioned to awaiting approval.",
|
|
23
|
+
"imagingProcedureInstructions": "Imaging Procedure Instructions",
|
|
24
|
+
"imagingReport": "Imaging Report",
|
|
25
|
+
"imagingReportForm": "Imaging Report Form",
|
|
26
|
+
"instructions": "Instructions",
|
|
27
|
+
"laterality": "Laterality",
|
|
28
|
+
"loading": "Loading",
|
|
29
|
+
"nextNotes": "Reviewer's notes ",
|
|
30
|
+
"noOrdersDescription": "No orders",
|
|
31
|
+
"notes": "Enter Comments ",
|
|
32
|
+
"orderActionDiscontinue": "Discontinue",
|
|
33
|
+
"orderActionIncomplete": "Incomplete",
|
|
34
|
+
"orderActionNew": "New",
|
|
35
|
+
"orderActionRenew": "Renew",
|
|
36
|
+
"orderActionRevise": "Modify",
|
|
37
|
+
"orderer": "orderer",
|
|
38
|
+
"orderNumber": "Order Number",
|
|
39
|
+
"ordersNotDone": "Orders Not Done",
|
|
40
|
+
"patientName": "Patient Name",
|
|
41
|
+
"pickedAnOrder": "Picked an order",
|
|
42
|
+
"pickImagingOrder": "Pick Imaging Order",
|
|
43
|
+
"pickRequest": "Pick Request",
|
|
44
|
+
"pickSuccessfully": "You have successfully picked an Order",
|
|
45
|
+
"pleaseRequiredFields": "Please fill all required fields",
|
|
46
|
+
"priority": "Priority",
|
|
47
|
+
"procedure": "procedure",
|
|
48
|
+
"referredTests": "Referred Tests",
|
|
49
|
+
"rejectImagingOrder": "Reject Imaging Order",
|
|
50
|
+
"rejectionReason": "Rejection Reason:",
|
|
51
|
+
"rejectOrder": "Reject Order",
|
|
52
|
+
"removeFromBasket": "Remove from basket",
|
|
53
|
+
"reviewImagingReport": "Review Imaging Report",
|
|
54
|
+
"reviewOrdered": "Review Ordered",
|
|
55
|
+
"saveAndClose": "Save & close",
|
|
56
|
+
"saveOrder": "Save order",
|
|
57
|
+
"scheduleDate": "Scheduled date",
|
|
58
|
+
"status": "Status",
|
|
59
|
+
"submitting": "Submitting...",
|
|
60
|
+
"successfullyRejected": "You have successfully rejected an Order with OrderNumber {{orderNumber}} ",
|
|
61
|
+
"testOrdered": "Test Ordered",
|
|
62
|
+
"testType": "Test type",
|
|
63
|
+
"testTypePlaceholder": "Select one",
|
|
64
|
+
"totalOrders": "Total Orders",
|
|
65
|
+
"transition": "Transition",
|
|
66
|
+
"tryReopeningTheForm": "Please try launching the form again",
|
|
67
|
+
"urgency": "urgency",
|
|
68
|
+
"workList": "Work List"
|
|
69
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('openmrs/default-webpack-config');
|