@openmrs/esm-stock-management-app 1.0.1-pre.554 → 1.0.1-pre.575
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/271.js +1 -1
- package/dist/319.js +1 -1
- package/dist/460.js +1 -1
- package/dist/574.js +1 -1
- package/dist/757.js +1 -1
- package/dist/769.js +1 -0
- package/dist/769.js.map +1 -0
- package/dist/788.js +1 -1
- package/dist/807.js +1 -1
- package/dist/833.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-stock-management-app.js +1 -1
- package/dist/openmrs-esm-stock-management-app.js.buildmanifest.json +52 -52
- package/dist/openmrs-esm-stock-management-app.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/core/api/types/stockOperation/StockOperationDTO.ts +0 -1
- package/src/core/components/card/metrics-card.scss +7 -7
- package/src/core/components/overlay/overlay.scss +6 -6
- package/src/core/components/privilages-component/privilages.scss +6 -5
- package/src/core/components/side-nav/side-nav.scss +12 -12
- package/src/core/components/table/table.scss +16 -16
- package/src/core/components/tabs/vertical-tabs.scss +15 -15
- package/src/dashboard/home-dashboard.scss +1 -1
- package/src/stock-home/stock-home-detail-card.scss +7 -7
- package/src/stock-home/stock-home.scss +7 -7
- package/src/stock-items/add-stock-item/stock-item-details/stock-item-details.component.tsx +2 -4
- package/src/stock-items/add-stock-item/stock-item-details/stock-item-details.scss +33 -4
- package/src/stock-items/stock-items-table.scss +8 -9
- package/src/stock-management-header/stock-management-header.scss +5 -5
- package/src/stock-operations/add-stock-operation/add-stock-operation.component.tsx +13 -9
- package/src/stock-operations/add-stock-operation/add-stock-operation.scss +5 -5
- package/src/stock-operations/add-stock-operation/add-stock-operation.utils.tsx +1 -4
- package/src/stock-operations/add-stock-operation/base-operation-details.component.tsx +2 -4
- package/src/stock-operations/add-stock-operation/base-operation-details.scss +30 -0
- package/src/stock-operations/add-stock-operation/stock-operation-submission.component.tsx +17 -17
- package/src/stock-operations/stock-operations-dialog/stock-operations-complete-button.component.tsx +3 -2
- package/src/stock-operations/stock-operations-dialog/stock-operations-completed-dispatch-button.component.tsx +3 -2
- package/src/stock-operations/stock-operations-dialog/stock-operations-dialog.scss +5 -5
- package/src/stock-operations/stock-operations-table.component.tsx +19 -65
- package/src/stock-operations/stock-operations-table.scss +8 -9
- package/src/stock-reports/report-list/stock-reports.scss +2 -1
- package/src/stock-settings/stock-settings.component.tsx +1 -1
- package/src/stock-settings/stock-settings.scss +7 -4
- package/src/stock-sources/add-stock-sources/add-stock-sources.scss +6 -6
- package/src/stock-sources/delete-stock-modal.component.tsx +3 -3
- package/src/stock-sources/delete-stock-modal.scss +11 -0
- package/src/stock-sources/stock-sources-filter/stock-sources-filter.scss +3 -1
- package/src/stock-sources/stock-sources.scss +9 -9
- package/src/stock-user-role-scopes/delete-stock-user-scope-modal.component.tsx +1 -1
- package/src/stock-user-role-scopes/delete-stock-user-scope-modal.scss +11 -0
- package/src/stock-user-role-scopes/stock-user-role-scopes.scss +8 -7
- package/translations/am.json +1 -0
- package/translations/ar.json +1 -0
- package/translations/en.json +2 -1
- package/translations/es.json +1 -0
- package/translations/fr.json +1 -0
- package/translations/he.json +1 -0
- package/translations/km.json +1 -0
- package/translations/zh.json +1 -0
- package/dist/281.js +0 -1
- package/dist/281.js.map +0 -1
- package/src/root.scss +0 -108
@@ -24,15 +24,14 @@ import {
|
|
24
24
|
StructuredListRow,
|
25
25
|
StructuredListCell,
|
26
26
|
StructuredListBody,
|
27
|
-
OverflowMenu,
|
28
|
-
OverflowMenuItem,
|
29
27
|
DatePickerInput,
|
30
28
|
DatePicker,
|
31
29
|
TableToolbarMenu,
|
32
30
|
TableToolbarAction,
|
31
|
+
Button,
|
33
32
|
InlineLoading,
|
34
33
|
} from "@carbon/react";
|
35
|
-
import { ArrowRight } from "@carbon/react/icons";
|
34
|
+
import { ArrowRight, Edit } from "@carbon/react/icons";
|
36
35
|
import { formatDisplayDate } from "../core/utils/datetimeUtils";
|
37
36
|
import {
|
38
37
|
StockOperationStatusCancelled,
|
@@ -131,18 +130,8 @@ const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
|
131
130
|
selectedStatus.length ||
|
132
131
|
selectedOperations.length;
|
133
132
|
|
134
|
-
const config = useConfig();
|
135
|
-
|
136
133
|
let operations: StockOperationType[] | null | undefined;
|
137
134
|
|
138
|
-
const handleOnComplete = () => {
|
139
|
-
const dispose = showModal("stock-operation-dialog", {
|
140
|
-
title: "complete",
|
141
|
-
closeModal: () => dispose(),
|
142
|
-
});
|
143
|
-
handleMutate(`${restBaseUrl}/stockmanagement/stockoperation`);
|
144
|
-
};
|
145
|
-
|
146
135
|
const handleOnFilterChange = useCallback((selectedItems, filterType) => {
|
147
136
|
if (filterType === StockFilters.SOURCES) {
|
148
137
|
setSelectedSources(selectedItems);
|
@@ -308,22 +297,22 @@ const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
|
308
297
|
</div>
|
309
298
|
),
|
310
299
|
actions: (
|
311
|
-
<
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
/>
|
326
|
-
|
300
|
+
<Button
|
301
|
+
kind="ghost"
|
302
|
+
size="md"
|
303
|
+
onClick={() => {
|
304
|
+
launchAddOrEditDialog(
|
305
|
+
t,
|
306
|
+
items[index],
|
307
|
+
true,
|
308
|
+
operation,
|
309
|
+
operations,
|
310
|
+
false
|
311
|
+
);
|
312
|
+
}}
|
313
|
+
iconDescription={t("editStockItem", "Edit Stock Item")}
|
314
|
+
renderIcon={(props) => <Edit size={16} {...props} />}
|
315
|
+
></Button>
|
327
316
|
),
|
328
317
|
}));
|
329
318
|
}, [items, operation, operations, t]);
|
@@ -396,19 +385,16 @@ const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
|
396
385
|
</DatePicker>
|
397
386
|
|
398
387
|
<StockOperationsFilters
|
399
|
-
conceptUuid={config.stockSourceTypeUUID}
|
400
388
|
filterName={StockFilters.SOURCES}
|
401
389
|
onFilterChange={handleOnFilterChange}
|
402
390
|
/>
|
403
391
|
|
404
392
|
<StockOperationsFilters
|
405
|
-
conceptUuid={config.stockSourceTypeUUID}
|
406
393
|
filterName={StockFilters.STATUS}
|
407
394
|
onFilterChange={handleOnFilterChange}
|
408
395
|
/>
|
409
396
|
|
410
397
|
<StockOperationsFilters
|
411
|
-
conceptUuid={config.stockSourceTypeUUID}
|
412
398
|
filterName={StockFilters.OPERATION}
|
413
399
|
onFilterChange={handleOnFilterChange}
|
414
400
|
/>
|
@@ -423,7 +409,7 @@ const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
|
423
409
|
onOperationTypeSelected={(operation) => {
|
424
410
|
launchAddOrEditDialog(
|
425
411
|
t,
|
426
|
-
|
412
|
+
initialStockOperationValue(),
|
427
413
|
false,
|
428
414
|
operation,
|
429
415
|
operations,
|
@@ -489,10 +475,6 @@ const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
|
489
475
|
<StructuredListCell head>
|
490
476
|
{t("dateCompleted", "Date Completed")}
|
491
477
|
</StructuredListCell>
|
492
|
-
<StructuredListCell head>
|
493
|
-
{t("batchNumber", "Batch Number")}
|
494
|
-
</StructuredListCell>
|
495
|
-
<StructuredListCell head>Qty</StructuredListCell>
|
496
478
|
</StructuredListRow>
|
497
479
|
</StructuredListHead>
|
498
480
|
<StructuredListBody>
|
@@ -521,20 +503,6 @@ const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
|
521
503
|
? items[index]?.creatorFamilyName
|
522
504
|
: ""}
|
523
505
|
</StructuredListCell>
|
524
|
-
<StructuredListCell>
|
525
|
-
{items[index]?.stockOperationItems
|
526
|
-
? items[index].stockOperationItems?.map(
|
527
|
-
(item) => item.batchNo
|
528
|
-
)[0]
|
529
|
-
: ""}
|
530
|
-
</StructuredListCell>
|
531
|
-
<StructuredListCell>
|
532
|
-
{items[index]?.stockOperationItems
|
533
|
-
? items[index].stockOperationItems?.map(
|
534
|
-
(item) => item.quantity
|
535
|
-
)[0]
|
536
|
-
: ""}
|
537
|
-
</StructuredListCell>
|
538
506
|
</StructuredListRow>
|
539
507
|
<StructuredListRow>
|
540
508
|
<StructuredListCell noWrap>
|
@@ -577,20 +545,6 @@ const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
|
577
545
|
? items[index]?.creatorFamilyName
|
578
546
|
: ""}
|
579
547
|
</StructuredListCell>
|
580
|
-
<StructuredListCell>
|
581
|
-
{items[index]?.stockOperationItems
|
582
|
-
? items[index].stockOperationItems?.map(
|
583
|
-
(item) => item.batchNo
|
584
|
-
)[1]
|
585
|
-
: ""}
|
586
|
-
</StructuredListCell>
|
587
|
-
<StructuredListCell>
|
588
|
-
{items[index]?.stockOperationItems
|
589
|
-
? items[index].stockOperationItems?.map(
|
590
|
-
(item) => item.quantity
|
591
|
-
)[1]
|
592
|
-
: ""}
|
593
|
-
</StructuredListCell>
|
594
548
|
</StructuredListRow>
|
595
549
|
</StructuredListBody>
|
596
550
|
</>
|
@@ -1,12 +1,11 @@
|
|
1
|
-
@use '@carbon/
|
2
|
-
@use '@carbon/
|
3
|
-
@
|
4
|
-
@import '../root.scss';
|
1
|
+
@use '@carbon/layout';
|
2
|
+
@use '@carbon/type';
|
3
|
+
@use '~@openmrs/esm-styleguide/src/vars' as *;
|
5
4
|
|
6
5
|
.tileContainer {
|
7
6
|
background-color: $ui-02;
|
8
7
|
border-top: 1px solid $ui-03;
|
9
|
-
padding:
|
8
|
+
padding: layout.$spacing-11 0;
|
10
9
|
}
|
11
10
|
|
12
11
|
.tile {
|
@@ -23,7 +22,7 @@
|
|
23
22
|
.content {
|
24
23
|
@include type.type-style('heading-compact-02');
|
25
24
|
color: $text-02;
|
26
|
-
margin-bottom:
|
25
|
+
margin-bottom: layout.$spacing-03;
|
27
26
|
}
|
28
27
|
|
29
28
|
.helper {
|
@@ -42,7 +41,7 @@
|
|
42
41
|
}
|
43
42
|
|
44
43
|
.dateAlign {
|
45
|
-
padding-top:
|
44
|
+
padding-top: layout.$spacing-03;
|
46
45
|
height: 100%;
|
47
46
|
}
|
48
47
|
|
@@ -50,12 +49,12 @@
|
|
50
49
|
display: flex;
|
51
50
|
align-items: center;
|
52
51
|
justify-content: space-between;
|
53
|
-
margin-bottom:
|
52
|
+
margin-bottom: layout.$spacing-05;
|
54
53
|
}
|
55
54
|
|
56
55
|
.rowLoadingContainer {
|
57
56
|
text-align: center;
|
58
|
-
padding:
|
57
|
+
padding: layout.$spacing-11 2rem;
|
59
58
|
margin: auto;
|
60
59
|
width: 20%;
|
61
60
|
}
|
@@ -10,7 +10,7 @@ function StockSettings() {
|
|
10
10
|
|
11
11
|
return (
|
12
12
|
<div className={styles.StockSettings}>
|
13
|
-
<div className={styles.
|
13
|
+
<div className={styles.tableHeader}>
|
14
14
|
{t(
|
15
15
|
"comingSoonUnderDev",
|
16
16
|
"Exciting updates are on the way! In the meantime, use the link below to access Admin UI settings."
|
@@ -1,6 +1,8 @@
|
|
1
1
|
@use '@carbon/colors';
|
2
2
|
@use '@carbon/layout';
|
3
|
-
@use
|
3
|
+
@use '@carbon/type';
|
4
|
+
@use '@openmrs/esm-styleguide/src/vars' as *;
|
5
|
+
|
4
6
|
|
5
7
|
.StockSettings {
|
6
8
|
display: flex;
|
@@ -18,6 +20,7 @@
|
|
18
20
|
}
|
19
21
|
}
|
20
22
|
|
21
|
-
.
|
22
|
-
@
|
23
|
-
|
23
|
+
.tableHeader {
|
24
|
+
@include type.type-style('heading-compact-01');
|
25
|
+
color: $text-02;
|
26
|
+
}
|
@@ -1,18 +1,18 @@
|
|
1
|
-
@use '@carbon/
|
2
|
-
@use '@carbon/
|
3
|
-
@
|
1
|
+
@use '@carbon/layout';
|
2
|
+
@use '@carbon/type';
|
3
|
+
@use '~@openmrs/esm-styleguide/src/vars' as *;
|
4
4
|
|
5
5
|
.section {
|
6
|
-
margin:
|
6
|
+
margin: layout.$spacing-03;
|
7
7
|
}
|
8
8
|
|
9
9
|
.sectionTitle {
|
10
10
|
@include type.type-style('heading-compact-02');
|
11
11
|
color: $text-02;
|
12
|
-
margin-bottom:
|
12
|
+
margin-bottom: layout.$spacing-04;
|
13
13
|
}
|
14
14
|
|
15
15
|
.modalBody {
|
16
|
-
padding-bottom:
|
16
|
+
padding-bottom: layout.$spacing-05;
|
17
17
|
}
|
18
18
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { useTranslation } from "react-i18next";
|
3
3
|
import { Button, ModalHeader, ModalBody, ModalFooter } from "@carbon/react";
|
4
|
-
import styles from "
|
4
|
+
import styles from "./delete-stock-modal.scss";
|
5
5
|
|
6
6
|
interface DeleteConfirmationProps {
|
7
7
|
uuid?: string;
|
@@ -20,11 +20,11 @@ const DeleteConfirmation: React.FC<DeleteConfirmationProps> = ({
|
|
20
20
|
|
21
21
|
return (
|
22
22
|
<>
|
23
|
-
<ModalHeader closeModal={close} className={styles.
|
23
|
+
<ModalHeader closeModal={close} className={styles.modalHeader}>
|
24
24
|
{t("deleteStock", "Delete Stock source")}?
|
25
25
|
</ModalHeader>
|
26
26
|
<ModalBody>
|
27
|
-
<p className={styles.
|
27
|
+
<p className={styles.bodyText}>
|
28
28
|
{t(
|
29
29
|
"deleteConfirmationText",
|
30
30
|
`Are you sure you want to delete this source? This action can't be undone.`,
|
@@ -1,10 +1,12 @@
|
|
1
|
+
@use '@carbon/layout';
|
2
|
+
|
1
3
|
.filterContainer {
|
2
4
|
:global(.cds--dropdown__wrapper--inline) {
|
3
5
|
gap: 0;
|
4
6
|
}
|
5
7
|
|
6
8
|
:global(.cds--list-box__menu-icon) {
|
7
|
-
height:
|
9
|
+
height: layout.$spacing-05;
|
8
10
|
}
|
9
11
|
|
10
12
|
:global(.cds--dropdown--inline) :global(.cds--list-box__field) {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
@use '@carbon/styles/scss/colors';
|
2
|
-
@use '@carbon/
|
2
|
+
@use '@carbon/layout';
|
3
3
|
@use '@carbon/styles/scss/type';
|
4
4
|
@import '~@openmrs/esm-styleguide/src/vars';
|
5
5
|
|
@@ -64,7 +64,7 @@
|
|
64
64
|
|
65
65
|
.tableContainer {
|
66
66
|
background-color: $ui-01;
|
67
|
-
margin: 0
|
67
|
+
margin: 0 layout.$spacing-05;
|
68
68
|
padding: 0;
|
69
69
|
|
70
70
|
a {
|
@@ -80,8 +80,8 @@
|
|
80
80
|
}
|
81
81
|
|
82
82
|
.toolbarContent {
|
83
|
-
height:
|
84
|
-
margin-bottom:
|
83
|
+
height: layout.$spacing-07;
|
84
|
+
margin-bottom: layout.$spacing-02;
|
85
85
|
}
|
86
86
|
}
|
87
87
|
|
@@ -142,7 +142,7 @@
|
|
142
142
|
.tileContainer {
|
143
143
|
background-color: $ui-02;
|
144
144
|
border-top: 1px solid $ui-03;
|
145
|
-
padding:
|
145
|
+
padding: layout.$spacing-11 0;
|
146
146
|
}
|
147
147
|
|
148
148
|
.tile {
|
@@ -178,7 +178,7 @@
|
|
178
178
|
.tabletHeading {
|
179
179
|
text-align: left;
|
180
180
|
text-transform: capitalize;
|
181
|
-
margin-bottom:
|
181
|
+
margin-bottom: layout.$spacing-05;
|
182
182
|
|
183
183
|
h4:after {
|
184
184
|
content: '';
|
@@ -204,13 +204,13 @@
|
|
204
204
|
|
205
205
|
.headerBtnContainer {
|
206
206
|
background-color: $ui-background;
|
207
|
-
padding:
|
207
|
+
padding: layout.$spacing-05;
|
208
208
|
text-align: right;
|
209
209
|
}
|
210
210
|
|
211
211
|
.addPatientToListBtn {
|
212
|
-
margin-left:
|
213
|
-
height:
|
212
|
+
margin-left: layout.$spacing-05;
|
213
|
+
height: layout.$spacing-09;
|
214
214
|
}
|
215
215
|
|
216
216
|
.editIcon {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { useTranslation } from "react-i18next";
|
3
3
|
import { Button, ModalHeader, ModalBody, ModalFooter } from "@carbon/react";
|
4
|
-
import styles from "
|
4
|
+
import styles from "./delete-stock-user-scope-modal.scss";
|
5
5
|
|
6
6
|
interface DeleteConfirmationProps {
|
7
7
|
uuid?: string;
|
@@ -1,6 +1,7 @@
|
|
1
|
-
@use '@carbon/
|
2
|
-
@use '@carbon/
|
3
|
-
@
|
1
|
+
@use '@carbon/colors';
|
2
|
+
@use '@carbon/layout';
|
3
|
+
@use '@carbon/type';
|
4
|
+
@use '~@openmrs/esm-styleguide/src/vars' as *;
|
4
5
|
|
5
6
|
.content {
|
6
7
|
@include type.type-style('heading-compact-02');
|
@@ -17,7 +18,7 @@
|
|
17
18
|
@include type.type-style('body-compact-02');
|
18
19
|
color: $text-02;
|
19
20
|
width: 80%;
|
20
|
-
margin:
|
21
|
+
margin: layout.$spacing-06 auto;
|
21
22
|
overflow: hidden;
|
22
23
|
text-align: center;
|
23
24
|
|
@@ -33,12 +34,12 @@
|
|
33
34
|
}
|
34
35
|
|
35
36
|
&::before {
|
36
|
-
right:
|
37
|
+
right: layout.$spacing-03;
|
37
38
|
margin-left: -50%;
|
38
39
|
}
|
39
40
|
|
40
41
|
&::after {
|
41
|
-
left:
|
42
|
+
left: layout.$spacing-03;;
|
42
43
|
margin-right: -50%;
|
43
44
|
}
|
44
45
|
}
|
@@ -46,7 +47,7 @@
|
|
46
47
|
.tileContainer {
|
47
48
|
background-color: $ui-02;
|
48
49
|
border-top: 1px solid $ui-03;
|
49
|
-
padding:
|
50
|
+
padding: layout.$spacing-11 0;
|
50
51
|
}
|
51
52
|
|
52
53
|
.tile {
|
package/translations/am.json
CHANGED
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "የአክሲዮን ምንጭ በተሳካ ሁኔታ ተሰርዟል።",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "የአክሲዮን ተጠቃሚ ወሰን በተሳካ ሁኔታ ተሰርዟል።",
|
282
282
|
"submit": "አስተዋውቅ",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "ተጠይቷል",
|
284
285
|
"successfullysaved": "የተጠቃሚ ሚና አካባቢ በተሳካ ሁኔታ ተስተካክሏል",
|
285
286
|
"SuccessfullyUploadedStockItem": "የአክሲዮን ንጥሎችን በተሳካ ሁኔታ ሰቅለዋል።",
|
package/translations/ar.json
CHANGED
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "تم حذف مصدر المخزون بنجاح",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "تم حذف نطاق مستخدم المخزون بنجاح",
|
282
282
|
"submit": "تقديم",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "تم تقديمه",
|
284
285
|
"successfullysaved": "تم حفظ نطاق دور المستخدم بنجاح",
|
285
286
|
"SuccessfullyUploadedStockItem": "لقد قمت بتحميل العناصر المخزنة بنجاح",
|
package/translations/en.json
CHANGED
@@ -54,7 +54,7 @@
|
|
54
54
|
"code": "Code",
|
55
55
|
"comingSoonUnderDev": "Exciting updates are on the way! In the meantime, use the link below to access Admin UI settings.",
|
56
56
|
"commonName": "Common Name",
|
57
|
-
"complete": "Complete
|
57
|
+
"complete": "Complete",
|
58
58
|
"completed": "Completed",
|
59
59
|
"continue": "Continue",
|
60
60
|
"created": "Created",
|
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "Stock Source Deleted Successfully",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "Stock User Scope Deleted Successfully",
|
282
282
|
"submit": "Submit",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "Submitted",
|
284
285
|
"successfullysaved": "You have successfully saved user role scope ",
|
285
286
|
"SuccessfullyUploadedStockItem": "You have successfully uploaded stock items",
|
package/translations/es.json
CHANGED
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "Fuente de stock eliminada correctamente",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "Ámbito de usuario de stock eliminado Exitosamente",
|
282
282
|
"submit": "Enviar",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "Enviado",
|
284
285
|
"successfullysaved": "Ha guardado con éxito el alcance del rol del usuario",
|
285
286
|
"SuccessfullyUploadedStockItem": "Has cargado correctamente los artículos en stock",
|
package/translations/fr.json
CHANGED
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "Source de stock supprimée avec succès",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "Portée de l'utilisateur stock supprimée avec succès",
|
282
282
|
"submit": "Soumettre",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "Soumis",
|
284
285
|
"successfullysaved": "Vous avez enregistré avec succès la portée du rôle de l'utilisateur",
|
285
286
|
"SuccessfullyUploadedStockItem": "Vous avez téléchargé avec succès les articles en stock",
|
package/translations/he.json
CHANGED
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "מקור מלאי נמחק בהצלחה",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "היקף משתמש במניות נמחק בהצלחה",
|
282
282
|
"submit": "שלח",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "נשלח",
|
284
285
|
"successfullysaved": "שמרת בהצלחה תחום תפקיד משתמש",
|
285
286
|
"SuccessfullyUploadedStockItem": "העלית בהצלחה פריטי מלאי",
|
package/translations/km.json
CHANGED
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "ប្រភពស្តុកត្រូវបានលុបដោយជោគជ័យ",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "វិសាលភាពអ្នកប្រើប្រាស់ស្តុកត្រូវបានលុបដោយជោគជ័យ",
|
282
282
|
"submit": "ដាក់ស្នើ",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "បានដាក់ស្នើ",
|
284
285
|
"successfullysaved": "អ្នកបានរក្សាទុកវិសាលភាពតួនាទីអ្នកប្រើដោយជោគជ័យ",
|
285
286
|
"SuccessfullyUploadedStockItem": "អ្នក\u200bបាន\u200bផ្ទុក\u200bឡើង\u200bធាតុ\u200bស្តុក\u200bដោយ\u200bជោគជ័យ",
|
package/translations/zh.json
CHANGED
@@ -280,6 +280,7 @@
|
|
280
280
|
"stockSourceDeletedSuccessfully": "库存源已成功删除",
|
281
281
|
"stockUserScopeDeletedSuccessfully": "库存用户范围已成功删除",
|
282
282
|
"submit": "提交",
|
283
|
+
"submitForReview": "Submit For Review",
|
283
284
|
"submitted": "已提交",
|
284
285
|
"successfullysaved": "您已成功保存用户角色范围",
|
285
286
|
"SuccessfullyUploadedStockItem": "您已成功上传库存商品",
|