@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.
Files changed (64) hide show
  1. package/dist/271.js +1 -1
  2. package/dist/319.js +1 -1
  3. package/dist/460.js +1 -1
  4. package/dist/574.js +1 -1
  5. package/dist/757.js +1 -1
  6. package/dist/769.js +1 -0
  7. package/dist/769.js.map +1 -0
  8. package/dist/788.js +1 -1
  9. package/dist/807.js +1 -1
  10. package/dist/833.js +1 -1
  11. package/dist/main.js +1 -1
  12. package/dist/main.js.map +1 -1
  13. package/dist/openmrs-esm-stock-management-app.js +1 -1
  14. package/dist/openmrs-esm-stock-management-app.js.buildmanifest.json +52 -52
  15. package/dist/openmrs-esm-stock-management-app.js.map +1 -1
  16. package/dist/routes.json +1 -1
  17. package/package.json +1 -1
  18. package/src/core/api/types/stockOperation/StockOperationDTO.ts +0 -1
  19. package/src/core/components/card/metrics-card.scss +7 -7
  20. package/src/core/components/overlay/overlay.scss +6 -6
  21. package/src/core/components/privilages-component/privilages.scss +6 -5
  22. package/src/core/components/side-nav/side-nav.scss +12 -12
  23. package/src/core/components/table/table.scss +16 -16
  24. package/src/core/components/tabs/vertical-tabs.scss +15 -15
  25. package/src/dashboard/home-dashboard.scss +1 -1
  26. package/src/stock-home/stock-home-detail-card.scss +7 -7
  27. package/src/stock-home/stock-home.scss +7 -7
  28. package/src/stock-items/add-stock-item/stock-item-details/stock-item-details.component.tsx +2 -4
  29. package/src/stock-items/add-stock-item/stock-item-details/stock-item-details.scss +33 -4
  30. package/src/stock-items/stock-items-table.scss +8 -9
  31. package/src/stock-management-header/stock-management-header.scss +5 -5
  32. package/src/stock-operations/add-stock-operation/add-stock-operation.component.tsx +13 -9
  33. package/src/stock-operations/add-stock-operation/add-stock-operation.scss +5 -5
  34. package/src/stock-operations/add-stock-operation/add-stock-operation.utils.tsx +1 -4
  35. package/src/stock-operations/add-stock-operation/base-operation-details.component.tsx +2 -4
  36. package/src/stock-operations/add-stock-operation/base-operation-details.scss +30 -0
  37. package/src/stock-operations/add-stock-operation/stock-operation-submission.component.tsx +17 -17
  38. package/src/stock-operations/stock-operations-dialog/stock-operations-complete-button.component.tsx +3 -2
  39. package/src/stock-operations/stock-operations-dialog/stock-operations-completed-dispatch-button.component.tsx +3 -2
  40. package/src/stock-operations/stock-operations-dialog/stock-operations-dialog.scss +5 -5
  41. package/src/stock-operations/stock-operations-table.component.tsx +19 -65
  42. package/src/stock-operations/stock-operations-table.scss +8 -9
  43. package/src/stock-reports/report-list/stock-reports.scss +2 -1
  44. package/src/stock-settings/stock-settings.component.tsx +1 -1
  45. package/src/stock-settings/stock-settings.scss +7 -4
  46. package/src/stock-sources/add-stock-sources/add-stock-sources.scss +6 -6
  47. package/src/stock-sources/delete-stock-modal.component.tsx +3 -3
  48. package/src/stock-sources/delete-stock-modal.scss +11 -0
  49. package/src/stock-sources/stock-sources-filter/stock-sources-filter.scss +3 -1
  50. package/src/stock-sources/stock-sources.scss +9 -9
  51. package/src/stock-user-role-scopes/delete-stock-user-scope-modal.component.tsx +1 -1
  52. package/src/stock-user-role-scopes/delete-stock-user-scope-modal.scss +11 -0
  53. package/src/stock-user-role-scopes/stock-user-role-scopes.scss +8 -7
  54. package/translations/am.json +1 -0
  55. package/translations/ar.json +1 -0
  56. package/translations/en.json +2 -1
  57. package/translations/es.json +1 -0
  58. package/translations/fr.json +1 -0
  59. package/translations/he.json +1 -0
  60. package/translations/km.json +1 -0
  61. package/translations/zh.json +1 -0
  62. package/dist/281.js +0 -1
  63. package/dist/281.js.map +0 -1
  64. 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
- <OverflowMenu flipped={"true"} aria-label="overflow-menu">
312
- <OverflowMenuItem itemText="Complete" onClick={handleOnComplete} />
313
- <OverflowMenuItem
314
- itemText="Edit"
315
- onClick={() => {
316
- launchAddOrEditDialog(
317
- t,
318
- items[index],
319
- true,
320
- operation,
321
- operations,
322
- false
323
- );
324
- }}
325
- />
326
- </OverflowMenu>
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
- { ...initialStockOperationValue(), receivedItems: [] },
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/styles/scss/spacing';
2
- @use '@carbon/styles/scss/type';
3
- @import "~@openmrs/esm-styleguide/src/vars";
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: 5rem 0;
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: 0.5rem;
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: spacing.$spacing-03;
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: spacing.$spacing-05;
52
+ margin-bottom: layout.$spacing-05;
54
53
  }
55
54
 
56
55
  .rowLoadingContainer {
57
56
  text-align: center;
58
- padding: 5rem 2rem;
57
+ padding: layout.$spacing-11 2rem;
59
58
  margin: auto;
60
59
  width: 20%;
61
60
  }
@@ -1,6 +1,7 @@
1
1
  @use '@carbon/styles/scss/colors';
2
2
  @use '@carbon/styles/scss/type';
3
- @import '~@openmrs/esm-styleguide/src/vars';
3
+ @use '@carbon/layout';
4
+ @use '~@openmrs/esm-styleguide/src/vars' as *;
4
5
 
5
6
  .content {
6
7
  @include type.type-style('heading-compact-02');
@@ -10,7 +10,7 @@ function StockSettings() {
10
10
 
11
11
  return (
12
12
  <div className={styles.StockSettings}>
13
- <div className={styles.title}>
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 "../root.scss" as *;
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
- .title {
22
- @extend .productiveHeading01;
23
- }
23
+ .tableHeader {
24
+ @include type.type-style('heading-compact-01');
25
+ color: $text-02;
26
+ }
@@ -1,18 +1,18 @@
1
- @use '@carbon/styles/scss/spacing';
2
- @use '@carbon/styles/scss/type';
3
- @import '~@openmrs/esm-styleguide/src/vars';
1
+ @use '@carbon/layout';
2
+ @use '@carbon/type';
3
+ @use '~@openmrs/esm-styleguide/src/vars' as *;
4
4
 
5
5
  .section {
6
- margin: spacing.$spacing-03;
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: spacing.$spacing-04;
12
+ margin-bottom: layout.$spacing-04;
13
13
  }
14
14
 
15
15
  .modalBody {
16
- padding-bottom: spacing.$spacing-05;
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 "../root.scss";
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.productiveHeading03}>
23
+ <ModalHeader closeModal={close} className={styles.modalHeader}>
24
24
  {t("deleteStock", "Delete Stock source")}?
25
25
  </ModalHeader>
26
26
  <ModalBody>
27
- <p className={styles.bodyLong01}>
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.`,
@@ -0,0 +1,11 @@
1
+ @use '@carbon/layout';
2
+ @use '@carbon/type';
3
+ @use '~@openmrs/esm-styleguide/src/vars' as *;
4
+
5
+ .bodyText {
6
+ @include type.type-style('body-long-01');
7
+ }
8
+
9
+ .modalHeader {
10
+ @include type.type-style('heading-compact-02');
11
+ }
@@ -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: 1rem;
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/styles/scss/spacing';
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 spacing.$spacing-05;
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: spacing.$spacing-07;
84
- margin-bottom: spacing.$spacing-02;
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: 5rem 0;
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: spacing.$spacing-05;
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: spacing.$spacing-05;
207
+ padding: layout.$spacing-05;
208
208
  text-align: right;
209
209
  }
210
210
 
211
211
  .addPatientToListBtn {
212
- margin-left: spacing.$spacing-05;
213
- height: spacing.$spacing-09;
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 "../root.scss";
4
+ import styles from "./delete-stock-user-scope-modal.scss";
5
5
 
6
6
  interface DeleteConfirmationProps {
7
7
  uuid?: string;
@@ -0,0 +1,11 @@
1
+ @use '@carbon/layout';
2
+ @use '@carbon/type';
3
+ @use '~@openmrs/esm-styleguide/src/vars' as *;
4
+
5
+ .bodyText {
6
+ @include type.type-style('body-long-01');
7
+ }
8
+
9
+ .modalHeader {
10
+ @include type.type-style('heading-compact-02');
11
+ }
@@ -1,6 +1,7 @@
1
- @use '@carbon/styles/scss/colors';
2
- @use '@carbon/styles/scss/type';
3
- @import '~@openmrs/esm-styleguide/src/vars';
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: 1.5rem auto;
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: 0.5rem;
37
+ right: layout.$spacing-03;
37
38
  margin-left: -50%;
38
39
  }
39
40
 
40
41
  &::after {
41
- left: 0.5rem;
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: 5rem 0;
50
+ padding: layout.$spacing-11 0;
50
51
  }
51
52
 
52
53
  .tile {
@@ -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": "የአክሲዮን ንጥሎችን በተሳካ ሁኔታ ሰቅለዋል።",
@@ -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": "لقد قمت بتحميل العناصر المخزنة بنجاح",
@@ -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 Dispatch ",
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",
@@ -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",
@@ -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",
@@ -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": "העלית בהצלחה פריטי מלאי",
@@ -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ជោគជ័យ",
@@ -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": "您已成功上传库存商品",