@openmrs/esm-stock-management-app 1.0.1-pre.327
Sign up to get free protection for your applications and to get access to all the features.
- package/.editorconfig +12 -0
- package/.eslintignore +2 -0
- package/.eslintrc +39 -0
- package/.husky/pre-commit +4 -0
- package/.husky/pre-push +6 -0
- package/.prettierignore +14 -0
- package/.turbo.json +18 -0
- package/.yarn/plugins/@yarnpkg/plugin-outdated.cjs +35 -0
- package/LICENSE +401 -0
- package/README.md +3 -0
- package/__mocks__/react-i18next.js +55 -0
- package/dist/26.js +2 -0
- package/dist/26.js.LICENSE.txt +32 -0
- package/dist/26.js.map +1 -0
- package/dist/294.js +2 -0
- package/dist/294.js.LICENSE.txt +9 -0
- package/dist/294.js.map +1 -0
- package/dist/375.js +2 -0
- package/dist/375.js.LICENSE.txt +40 -0
- package/dist/375.js.map +1 -0
- package/dist/46.js +1 -0
- package/dist/46.js.map +1 -0
- package/dist/484.js +1 -0
- package/dist/484.js.map +1 -0
- package/dist/574.js +1 -0
- package/dist/629.js +1 -0
- package/dist/629.js.map +1 -0
- package/dist/707.js +1 -0
- package/dist/707.js.map +1 -0
- package/dist/800.js +2 -0
- package/dist/800.js.LICENSE.txt +3 -0
- package/dist/800.js.map +1 -0
- package/dist/935.js +2 -0
- package/dist/935.js.LICENSE.txt +19 -0
- package/dist/935.js.map +1 -0
- package/dist/979.js +1 -0
- package/dist/979.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/openmrs-esm-stock-management-app.js +1 -0
- package/dist/openmrs-esm-stock-management-app.js.buildmanifest.json +356 -0
- package/dist/openmrs-esm-stock-management-app.js.map +1 -0
- package/dist/routes.json +1 -0
- package/i18next-parser.config.js +89 -0
- package/jest.config.js +25 -0
- package/package.json +116 -0
- package/src/config-schema.ts +18 -0
- package/src/constants.ts +214 -0
- package/src/core/api/api.ts +34 -0
- package/src/core/api/types/Auditable.ts +9 -0
- package/src/core/api/types/BaseOpenmrsData.ts +4 -0
- package/src/core/api/types/BaseOpenmrsMetadata.ts +6 -0
- package/src/core/api/types/BaseOpenmrsObject.ts +3 -0
- package/src/core/api/types/BatchJob.ts +121 -0
- package/src/core/api/types/DashboardExtension.ts +8 -0
- package/src/core/api/types/Location.ts +16 -0
- package/src/core/api/types/LocationTree.ts +7 -0
- package/src/core/api/types/OpenmrsData.ts +5 -0
- package/src/core/api/types/OpenmrsMetadata.ts +8 -0
- package/src/core/api/types/OpenmrsObject.ts +3 -0
- package/src/core/api/types/PageableResult.ts +15 -0
- package/src/core/api/types/Party.ts +8 -0
- package/src/core/api/types/RecordPermission.ts +9 -0
- package/src/core/api/types/Retireable.ts +9 -0
- package/src/core/api/types/Voidable.ts +9 -0
- package/src/core/api/types/concept/Concept.ts +24 -0
- package/src/core/api/types/concept/ConceptName.ts +14 -0
- package/src/core/api/types/concept/Drug.ts +14 -0
- package/src/core/api/types/identity/Credentials.ts +4 -0
- package/src/core/api/types/identity/Patient.ts +3 -0
- package/src/core/api/types/identity/Person.ts +4 -0
- package/src/core/api/types/identity/PriviledgeScope.ts +9 -0
- package/src/core/api/types/identity/Privilege.ts +5 -0
- package/src/core/api/types/identity/Role.ts +5 -0
- package/src/core/api/types/identity/Session.ts +16 -0
- package/src/core/api/types/identity/User.ts +19 -0
- package/src/core/api/types/identity/UserRoleScope.ts +17 -0
- package/src/core/api/types/identity/UserRoleScopeLocation.ts +7 -0
- package/src/core/api/types/identity/UserRoleScopeOperationType.ts +6 -0
- package/src/core/api/types/stockItem/ImportResult.ts +9 -0
- package/src/core/api/types/stockItem/StockBatch.ts +8 -0
- package/src/core/api/types/stockItem/StockBatchDTO.ts +8 -0
- package/src/core/api/types/stockItem/StockItem.ts +63 -0
- package/src/core/api/types/stockItem/StockItemInventory.ts +10 -0
- package/src/core/api/types/stockItem/StockItemPackagingUOM.ts +20 -0
- package/src/core/api/types/stockItem/StockItemTransaction.ts +22 -0
- package/src/core/api/types/stockItem/StockRule.ts +28 -0
- package/src/core/api/types/stockOperation/LocationType.ts +4 -0
- package/src/core/api/types/stockOperation/StockOperation.ts +36 -0
- package/src/core/api/types/stockOperation/StockOperationAction.ts +24 -0
- package/src/core/api/types/stockOperation/StockOperationDTO.ts +64 -0
- package/src/core/api/types/stockOperation/StockOperationItem.ts +13 -0
- package/src/core/api/types/stockOperation/StockOperationItemCost.ts +14 -0
- package/src/core/api/types/stockOperation/StockOperationItemDTO.ts +29 -0
- package/src/core/api/types/stockOperation/StockOperationLinkDTO.ts +13 -0
- package/src/core/api/types/stockOperation/StockOperationStatus.ts +18 -0
- package/src/core/api/types/stockOperation/StockOperationType.ts +162 -0
- package/src/core/api/types/stockOperation/StockSource.ts +8 -0
- package/src/core/components/carbon/controlled-combo-box/controlled-combo-box.component.tsx +37 -0
- package/src/core/components/carbon/controlled-combo-box/controlled-combo-box.resource.tsx +0 -0
- package/src/core/components/carbon/controlled-combo-box/controlled-combo-box.scss +0 -0
- package/src/core/components/carbon/controlled-combo-box/controlled-combo-box.test.tsx +8 -0
- package/src/core/components/carbon/controlled-dropdown/controlled-dropdown.component.tsx +40 -0
- package/src/core/components/carbon/controlled-dropdown/controlled-dropdown.resource.tsx +0 -0
- package/src/core/components/carbon/controlled-dropdown/controlled-dropdown.scss +0 -0
- package/src/core/components/carbon/controlled-dropdown/controlled-dropdown.test.tsx +8 -0
- package/src/core/components/carbon/controlled-number-input/controlled-number-input.component.tsx +44 -0
- package/src/core/components/carbon/controlled-number-input/controlled-number-input.resource.tsx +0 -0
- package/src/core/components/carbon/controlled-number-input/controlled-number-input.scss +0 -0
- package/src/core/components/carbon/controlled-number-input/controlled-number-input.test.tsx +8 -0
- package/src/core/components/carbon/controlled-radio-button-group/controlled-radio-button-group.component.tsx +54 -0
- package/src/core/components/carbon/controlled-radio-button-group/controlled-radio-button-group.resource.tsx +0 -0
- package/src/core/components/carbon/controlled-radio-button-group/controlled-radio-button-group.scss +0 -0
- package/src/core/components/carbon/controlled-radio-button-group/controlled-radio-button-group.test.tsx +8 -0
- package/src/core/components/carbon/controlled-text-area/controlled-text-area.component.tsx +37 -0
- package/src/core/components/carbon/controlled-text-area/controlled-text-area.resource.tsx +0 -0
- package/src/core/components/carbon/controlled-text-area/controlled-text-area.scss +0 -0
- package/src/core/components/carbon/controlled-text-area/controlled-text-area.test.tsx +11 -0
- package/src/core/components/carbon/controlled-text-input/controlled-text-input.component.tsx +37 -0
- package/src/core/components/carbon/controlled-text-input/controlled-text-input.resource.tsx +0 -0
- package/src/core/components/carbon/controlled-text-input/controlled-text-input.scss +0 -0
- package/src/core/components/carbon/controlled-text-input/controlled-text-input.test.tsx +8 -0
- package/src/core/components/carbon/types.ts +7 -0
- package/src/core/components/card/metrics-card-component.tsx +102 -0
- package/src/core/components/card/metrics-card.scss +78 -0
- package/src/core/components/overlay/hook.ts +47 -0
- package/src/core/components/overlay/overlay.component.tsx +52 -0
- package/src/core/components/overlay/overlay.scss +97 -0
- package/src/core/components/side-nav/side-nav.component.tsx +62 -0
- package/src/core/components/side-nav/side-nav.scss +126 -0
- package/src/core/components/side-nav/types.ts +6 -0
- package/src/core/components/table/table.component.tsx +239 -0
- package/src/core/components/table/table.scss +173 -0
- package/src/core/components/table/types.ts +8 -0
- package/src/core/components/tabs/types.ts +7 -0
- package/src/core/components/tabs/vertical-tabs.component.tsx +53 -0
- package/src/core/components/tabs/vertical-tabs.scss +126 -0
- package/src/core/hooks/debounce-hook.ts +35 -0
- package/src/core/print/PrintStyles.ts +774 -0
- package/src/core/print/PrintTemplate.ts +65 -0
- package/src/core/print/printUtils.ts +19 -0
- package/src/core/utils/alert.ts +10 -0
- package/src/core/utils/datetimeUtils.ts +84 -0
- package/src/core/utils/debounce.ts +21 -0
- package/src/core/utils/imageUtils.ts +82 -0
- package/src/core/utils/stringUtils.ts +27 -0
- package/src/core/utils/utils.ts +70 -0
- package/src/createDashboardLink.tsx +43 -0
- package/src/dashboard/stock-management-dashboard-side-nav.component.tsx +50 -0
- package/src/dashboard/stock-management-dashboard.component.tsx +41 -0
- package/src/dashboard/stock-management-dashboard.scss +8 -0
- package/src/dashboard.meta.ts +5 -0
- package/src/declarations.d.ts +6 -0
- package/src/index.ts +64 -0
- package/src/root.component.tsx +12 -0
- package/src/root.scss +174 -0
- package/src/routes.json +53 -0
- package/src/setup-tests.ts +1 -0
- package/src/stock-app-menu-item/item.component.tsx +21 -0
- package/src/stock-app-menu-item/item.resource.ts +0 -0
- package/src/stock-app-menu-item/item.scss +17 -0
- package/src/stock-batch/stock-batch.resource.ts +79 -0
- package/src/stock-home/stock-home-detail-card.scss +211 -0
- package/src/stock-home/stock-home-detail-cards.component.tsx +62 -0
- package/src/stock-home/stock-home-inventory-card.component.tsx +80 -0
- package/src/stock-home/stock-home-inventory-expiry.resource.tsx +32 -0
- package/src/stock-home/stock-home-inventory-items.resource.tsx +28 -0
- package/src/stock-home/stock-home-issuing-card.component.tsx +84 -0
- package/src/stock-home/stock-home-issuing.resource.tsx +18 -0
- package/src/stock-home/stock-home-landing-page-component.tsx +14 -0
- package/src/stock-home/stock-home-metrics.tsx +112 -0
- package/src/stock-home/stock-home-receiving-card.component.tsx +66 -0
- package/src/stock-home/stock-home-receiving.resource.tsx +17 -0
- package/src/stock-home/stock-home.scss +13 -0
- package/src/stock-home/useDisposalList.tsx +18 -0
- package/src/stock-home/useStockList.tsx +36 -0
- package/src/stock-items/add-bulk-stock-item/add-stock-items-bulk-import-action-button.component.tsx +26 -0
- package/src/stock-items/add-bulk-stock-item/stock-items-bulk-import.component.tsx +109 -0
- package/src/stock-items/add-bulk-stock-item/stock-items-bulk-import.resource.ts +14 -0
- package/src/stock-items/add-bulk-stock-item/stock-items-bulk-import.scss +0 -0
- package/src/stock-items/add-stock-item/add-stock-action-button.component.tsx +21 -0
- package/src/stock-items/add-stock-item/add-stock-item.component.tsx +84 -0
- package/src/stock-items/add-stock-item/add-stock-item.resource.tsx +36 -0
- package/src/stock-items/add-stock-item/add-stock-item.scss +5 -0
- package/src/stock-items/add-stock-item/batch-information/batch-information.component.tsx +98 -0
- package/src/stock-items/add-stock-item/batch-information/batch-information.resource.tsx +71 -0
- package/src/stock-items/add-stock-item/batch-information/batch-information.scss +0 -0
- package/src/stock-items/add-stock-item/concepts-selector/concepts-selector.component.tsx +79 -0
- package/src/stock-items/add-stock-item/concepts-selector/concepts-selector.resource.tsx +0 -0
- package/src/stock-items/add-stock-item/concepts-selector/concepts-selector.scss +0 -0
- package/src/stock-items/add-stock-item/concepts-selector/concepts-selector.test.tsx +8 -0
- package/src/stock-items/add-stock-item/dispensing-package-measurement/dispensing-package-measurement.component.tsx +76 -0
- package/src/stock-items/add-stock-item/dispensing-unit-selector/dispensing-unit-selector.component.tsx +66 -0
- package/src/stock-items/add-stock-item/dispensing-unit-selector/dispensing-unit-selector.resource.tsx +0 -0
- package/src/stock-items/add-stock-item/dispensing-unit-selector/dispensing-unit-selector.scss +0 -0
- package/src/stock-items/add-stock-item/dispensing-unit-selector/dispensing-unit-selector.test.tsx +8 -0
- package/src/stock-items/add-stock-item/drug-selector/drug-selector.component.tsx +83 -0
- package/src/stock-items/add-stock-item/drug-selector/drug-selector.resource.tsx +50 -0
- package/src/stock-items/add-stock-item/drug-selector/drug-selector.scss +0 -0
- package/src/stock-items/add-stock-item/packaging-units/packaging-units.component.tsx +255 -0
- package/src/stock-items/add-stock-item/packaging-units/packaging-units.resource.tsx +38 -0
- package/src/stock-items/add-stock-item/packaging-units/packaging-units.scss +21 -0
- package/src/stock-items/add-stock-item/packaging-units/validationSchema.ts +14 -0
- package/src/stock-items/add-stock-item/packaging-units-concept-selector/packaging-units-concept-selector.component.tsx +95 -0
- package/src/stock-items/add-stock-item/preferred-vendor-selector/preferred-vendor-selector.component.tsx +70 -0
- package/src/stock-items/add-stock-item/preferred-vendor-selector/preferred-vendor-selector.resource.tsx +0 -0
- package/src/stock-items/add-stock-item/preferred-vendor-selector/preferred-vendor-selector.scss +0 -0
- package/src/stock-items/add-stock-item/preferred-vendor-selector/preferred-vendor-selector.test.tsx +8 -0
- package/src/stock-items/add-stock-item/quantities/quantities.component.tsx +83 -0
- package/src/stock-items/add-stock-item/quantities/quantities.resource.tsx +69 -0
- package/src/stock-items/add-stock-item/quantities/quantities.scss +0 -0
- package/src/stock-items/add-stock-item/stock-item-category-selector/stock-item-category-selector.component.tsx +67 -0
- package/src/stock-items/add-stock-item/stock-item-category-selector/stock-item-category-selector.resource.tsx +0 -0
- package/src/stock-items/add-stock-item/stock-item-category-selector/stock-item-category-selector.scss +0 -0
- package/src/stock-items/add-stock-item/stock-item-category-selector/stock-item-category-selector.test.tsx +8 -0
- package/src/stock-items/add-stock-item/stock-item-details/stock-item-details.component.tsx +239 -0
- package/src/stock-items/add-stock-item/stock-item-details/stock-item-details.resource.tsx +14 -0
- package/src/stock-items/add-stock-item/stock-item-details/stock-item-details.scss +13 -0
- package/src/stock-items/add-stock-item/stock-item-rules/add-stock-rule-button.component.tsx +30 -0
- package/src/stock-items/add-stock-item/stock-item-rules/add-stock-rules.component.tsx +424 -0
- package/src/stock-items/add-stock-item/stock-item-rules/add-stock-rules.scss +18 -0
- package/src/stock-items/add-stock-item/stock-item-rules/delete-stock-rule-modal.component.tsx +47 -0
- package/src/stock-items/add-stock-item/stock-item-rules/edit-stock-rule.component.tsx +37 -0
- package/src/stock-items/add-stock-item/stock-item-rules/edit-stock-rule.scss +0 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-item-rules.component.tsx +222 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-item-rules.resource.tsx +72 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-item-rules.scss +13 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-rules-delete.component.tsx +67 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-rules-delete.scss +0 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-rules-filter.component.tsx +38 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-rules-filter.scss +13 -0
- package/src/stock-items/add-stock-item/stock-item-rules/stock-rules.resource.ts +79 -0
- package/src/stock-items/add-stock-item/stock-item-units-edit/stock-item-units-edit.component.tsx +132 -0
- package/src/stock-items/add-stock-item/stock-rules/stock-rules.component.tsx +16 -0
- package/src/stock-items/add-stock-item/stock-rules/stock-rules.resource.tsx +0 -0
- package/src/stock-items/add-stock-item/stock-rules/stock-rules.scss +0 -0
- package/src/stock-items/add-stock-item/transactions/transactions.component.tsx +151 -0
- package/src/stock-items/add-stock-item/transactions/transactions.resource.tsx +109 -0
- package/src/stock-items/add-stock-item/transactions/transactions.scss +0 -0
- package/src/stock-items/components/filter-stock-items/filter-stock-items.component.tsx +28 -0
- package/src/stock-items/components/filter-stock-items/filter-stock-items.resource.tsx +0 -0
- package/src/stock-items/components/filter-stock-items/filter-stock-items.scss +3 -0
- package/src/stock-items/edit-stock-item/edit-stock-item-action-menu.component.tsx +30 -0
- package/src/stock-items/stock-item.utils.tsx +62 -0
- package/src/stock-items/stock-items-table.component.tsx +266 -0
- package/src/stock-items/stock-items-table.resource.ts +58 -0
- package/src/stock-items/stock-items-table.scss +66 -0
- package/src/stock-items/stock-items.component.tsx +12 -0
- package/src/stock-items/stock-items.resource.ts +365 -0
- package/src/stock-items/types.ts +8 -0
- package/src/stock-items/validationSchema.ts +67 -0
- package/src/stock-locations/stock-locations-table.component.tsx +69 -0
- package/src/stock-locations/stock-locations-table.resource.tsx +73 -0
- package/src/stock-locations/stock-locations-table.scss +0 -0
- package/src/stock-locations/stock-locations.component.tsx +12 -0
- package/src/stock-locations/stock-locations.resource.ts +0 -0
- package/src/stock-lookups/stock-lookups.resource.ts +306 -0
- package/src/stock-management-admin-card-link.component.tsx +29 -0
- package/src/stock-management-header/stock-management-Illustration.tsx +35 -0
- package/src/stock-management-header/stock-management-header.component.tsx +37 -0
- package/src/stock-management-header/stock-management-header.scss +58 -0
- package/src/stock-management.component.tsx +6 -0
- package/src/stock-operations/add-stock-operation/add-stock-operation.component.tsx +491 -0
- package/src/stock-operations/add-stock-operation/add-stock-operation.resource.tsx +33 -0
- package/src/stock-operations/add-stock-operation/add-stock-operation.scss +44 -0
- package/src/stock-operations/add-stock-operation/add-stock-operation.utils.tsx +241 -0
- package/src/stock-operations/add-stock-operation/add-stock-utils.ts +110 -0
- package/src/stock-operations/add-stock-operation/base-operation-details.component.tsx +352 -0
- package/src/stock-operations/add-stock-operation/stock-items-addition-row.component.tsx +347 -0
- package/src/stock-operations/add-stock-operation/stock-items-addition-row.resource.tsx +0 -0
- package/src/stock-operations/add-stock-operation/stock-items-addition-row.scss +0 -0
- package/src/stock-operations/add-stock-operation/stock-items-addition-row.test.tsx +11 -0
- package/src/stock-operations/add-stock-operation/stock-items-addition.component.scss +5 -0
- package/src/stock-operations/add-stock-operation/stock-items-addition.component.tsx +272 -0
- package/src/stock-operations/add-stock-operation/stock-operation-context/useStockOperationContext.tsx +22 -0
- package/src/stock-operations/add-stock-operation/stock-operation-submission.component.tsx +188 -0
- package/src/stock-operations/add-stock-operation/types.ts +55 -0
- package/src/stock-operations/add-stock-operation/validationSchema.ts +45 -0
- package/src/stock-operations/batch-no-selector/batch-no-selector.component.tsx +100 -0
- package/src/stock-operations/batch-no-selector/batch-no-selector.resource.tsx +46 -0
- package/src/stock-operations/batch-no-selector/batch-no-selector.scss +0 -0
- package/src/stock-operations/batch-no-selector/batch-no-selector.test.tsx +11 -0
- package/src/stock-operations/edit-stock-operation/edit-stock-operation-action-menu.component.tsx +73 -0
- package/src/stock-operations/party-selector/party-selector.component.tsx +58 -0
- package/src/stock-operations/qty-uom-selector/qty-uom-selector.component.tsx +65 -0
- package/src/stock-operations/qty-uom-selector/qty-uom-selector.resource.tsx +0 -0
- package/src/stock-operations/qty-uom-selector/qty-uom-selector.scss +0 -0
- package/src/stock-operations/qty-uom-selector/qty-uom-selector.test.tsx +11 -0
- package/src/stock-operations/stock-item-selector/stock-item-selector.component.tsx +74 -0
- package/src/stock-operations/stock-item-selector/stock-item-selector.resource.tsx +47 -0
- package/src/stock-operations/stock-item-selector/stock-item-selector.scss +0 -0
- package/src/stock-operations/stock-item-selector/stock-item-selector.test.tsx +11 -0
- package/src/stock-operations/stock-operation-operations-filter/stock-operation-operations-filter.component.tsx +27 -0
- package/src/stock-operations/stock-operation-operations-filter/stock-operation-operations-filter.scss +13 -0
- package/src/stock-operations/stock-operation-reason-selector/stock-operation-reason-selector.component.tsx +65 -0
- package/src/stock-operations/stock-operation-sources-filter/stock-operation-sources-filter.component.tsx +30 -0
- package/src/stock-operations/stock-operation-sources-filter/stock-operation-sources-filter.scss +13 -0
- package/src/stock-operations/stock-operation-statuses-filter/stock-operation-statuses-filter.component.tsx +32 -0
- package/src/stock-operations/stock-operation-statuses-filter/stock-operation-statuses-filter.scss +13 -0
- package/src/stock-operations/stock-operation-types-selector/stock-operation-types-selector.component.tsx +80 -0
- package/src/stock-operations/stock-operation.utils.tsx +106 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-approve-button.component.tsx +36 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-approve-dispatch-button.component.tsx +36 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-cancel-button.component.tsx +37 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-complete-button.component.tsx +36 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-completed-dispatch-button.component.tsx +36 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-dialog.component.tsx +167 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-dialog.scss +14 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-issue-stock-button.component.tsx +58 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-print-button.component.tsx +160 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-reject-button.component.tsx +37 -0
- package/src/stock-operations/stock-operations-dialog/stock-operations-return-button.component.tsx +37 -0
- package/src/stock-operations/stock-operations-table.component.tsx +524 -0
- package/src/stock-operations/stock-operations-table.resource.tsx +77 -0
- package/src/stock-operations/stock-operations-table.scss +0 -0
- package/src/stock-operations/stock-operations.component.tsx +12 -0
- package/src/stock-operations/stock-operations.resource.ts +238 -0
- package/src/stock-operations/stock-print-reports/GoodsReceivedNote.tsx +147 -0
- package/src/stock-operations/stock-print-reports/RequisitionDocument.tsx +153 -0
- package/src/stock-operations/stock-print-reports/StockOperationReport.tsx +133 -0
- package/src/stock-operations/stock-print-reports/StockTransferDocument.tsx +161 -0
- package/src/stock-operations/swr-revalidation.ts +7 -0
- package/src/stock-operations/users-selector/users-selector.component.tsx +77 -0
- package/src/stock-operations/users-selector/users-selector.resource.tsx +47 -0
- package/src/stock-operations/validation-schema.ts +195 -0
- package/src/stock-reports/ReportType.ts +63 -0
- package/src/stock-reports/stock-reports.component.tsx +0 -0
- package/src/stock-reports/stock-reports.resource.ts +0 -0
- package/src/stock-settings/stock-settings.component.tsx +11 -0
- package/src/stock-settings/stock-settings.resource.ts +0 -0
- package/src/stock-sources/add-stock-source-button.component.tsx +21 -0
- package/src/stock-sources/add-stock-sources/add-stock-sources.component.tsx +152 -0
- package/src/stock-sources/add-stock-sources/add-stock-sources.scss +18 -0
- package/src/stock-sources/delete-stock-modal.component.tsx +47 -0
- package/src/stock-sources/edit-stock-source/edit-stock-source.component.tsx +35 -0
- package/src/stock-sources/edit-stock-source/edit-stock-source.scss +0 -0
- package/src/stock-sources/stock-sources-delete/stock-sources-delate.scss +0 -0
- package/src/stock-sources/stock-sources-delete/stock-sources-delete.component.tsx +72 -0
- package/src/stock-sources/stock-sources-filter/stock-sources-filter.component.tsx +35 -0
- package/src/stock-sources/stock-sources-filter/stock-sources-filter.scss +13 -0
- package/src/stock-sources/stock-sources-items-table.component.tsx +213 -0
- package/src/stock-sources/stock-sources-items-table.resource.ts +56 -0
- package/src/stock-sources/stock-sources.component.tsx +12 -0
- package/src/stock-sources/stock-sources.resource.ts +80 -0
- package/src/stock-sources/stock-sources.scss +220 -0
- package/src/stock-sources/swr-revalidation.ts +7 -0
- package/src/stock-tabs/commodity-tabs.component.tsx +43 -0
- package/src/stock-tabs/commodity-tabs.scss +0 -0
- package/src/stock-user-role-scopes/add-stock-user-role-scope-button.component.tsx +21 -0
- package/src/stock-user-role-scopes/add-stock-user-scope/add-stock-user-role-scope.component.tsx +525 -0
- package/src/stock-user-role-scopes/add-stock-user-scope/add-stock-user-role-scope.scss +37 -0
- package/src/stock-user-role-scopes/delete-stock-user-scope/delete-stock-user-scope.component.tsx +73 -0
- package/src/stock-user-role-scopes/delete-stock-user-scope/delete-stock-user-scope.scss +0 -0
- package/src/stock-user-role-scopes/delete-stock-user-scope-modal.component.tsx +47 -0
- package/src/stock-user-role-scopes/edit-stock-user-scope/edit-stock-user-scope-action-menu.component.tsx +35 -0
- package/src/stock-user-role-scopes/stock-user-role-scopes-items-table.component.tsx +284 -0
- package/src/stock-user-role-scopes/stock-user-role-scopes-items-table.resource.ts +31 -0
- package/src/stock-user-role-scopes/stock-user-role-scopes.component.tsx +12 -0
- package/src/stock-user-role-scopes/stock-user-role-scopes.resource.ts +76 -0
- package/src/stock-user-role-scopes/stock-user-role-scopes.scss +61 -0
- package/src/stock-user-role-scopes/swr-revalidation.ts +7 -0
- package/src/utils.ts +10 -0
- package/translations/en.json +24 -0
- package/tsconfig.json +23 -0
- package/webpack.config.js +1 -0
@@ -0,0 +1,424 @@
|
|
1
|
+
import {
|
2
|
+
ModalHeader,
|
3
|
+
ModalBody,
|
4
|
+
ModalFooter,
|
5
|
+
Button,
|
6
|
+
Form,
|
7
|
+
Select,
|
8
|
+
TextInput,
|
9
|
+
SelectItem,
|
10
|
+
FormGroup,
|
11
|
+
Checkbox,
|
12
|
+
CheckboxGroup,
|
13
|
+
} from "@carbon/react";
|
14
|
+
import React, { ChangeEvent, useCallback, useState, useEffect } from "react";
|
15
|
+
import styles from "./add-stock-rules.scss";
|
16
|
+
import {
|
17
|
+
useRoles,
|
18
|
+
useStockLocations,
|
19
|
+
} from "../../../stock-lookups/stock-lookups.resource";
|
20
|
+
import { createOrUpdateStockRule } from "./stock-rules.resource";
|
21
|
+
import { StockRule } from "../../../core/api/types/stockItem/StockRule";
|
22
|
+
import { showNotification, showToast } from "@openmrs/esm-framework";
|
23
|
+
import { useTranslation } from "react-i18next";
|
24
|
+
import { closeOverlay } from "../../../core/components/overlay/hook";
|
25
|
+
import { ResourceRepresentation } from "../../../core/api/api";
|
26
|
+
import {
|
27
|
+
StockItemInventoryFilter,
|
28
|
+
useStockItemPackagingUOMs,
|
29
|
+
} from "../../stock-items.resource";
|
30
|
+
|
31
|
+
interface AddStockRuleProps {
|
32
|
+
model?: StockRule;
|
33
|
+
stockItemUuid?: string;
|
34
|
+
}
|
35
|
+
|
36
|
+
const StockRulesAddOrUpdate: React.FC<AddStockRuleProps> = ({
|
37
|
+
model,
|
38
|
+
stockItemUuid,
|
39
|
+
}) => {
|
40
|
+
const { t } = useTranslation();
|
41
|
+
console.warn("Got stock id: ", stockItemUuid);
|
42
|
+
|
43
|
+
const [stockItemFilter, setStockItemFilter] =
|
44
|
+
useState<StockItemInventoryFilter>({
|
45
|
+
startIndex: 0,
|
46
|
+
v: ResourceRepresentation.Default,
|
47
|
+
q: null,
|
48
|
+
totalCount: true,
|
49
|
+
});
|
50
|
+
|
51
|
+
useEffect(() => {
|
52
|
+
setStockItemFilter({
|
53
|
+
startIndex: 0,
|
54
|
+
v: ResourceRepresentation.Default,
|
55
|
+
totalCount: true,
|
56
|
+
stockItemUuid: stockItemUuid,
|
57
|
+
});
|
58
|
+
}, [stockItemUuid]);
|
59
|
+
|
60
|
+
const { items: dispensingUnits } = useStockItemPackagingUOMs(stockItemFilter);
|
61
|
+
|
62
|
+
//locations
|
63
|
+
const {
|
64
|
+
locations: { results: locations },
|
65
|
+
} = useStockLocations({ v: ResourceRepresentation.Default });
|
66
|
+
|
67
|
+
//Roles
|
68
|
+
const {
|
69
|
+
items: rolesData,
|
70
|
+
isError: rolesError,
|
71
|
+
isLoading: loadingRoles,
|
72
|
+
} = useRoles({ v: ResourceRepresentation.Default });
|
73
|
+
|
74
|
+
const [formModel, setFormModel] = useState<StockRule>();
|
75
|
+
|
76
|
+
useEffect(() => {
|
77
|
+
if (model != null && Object.keys(model).length != 0) {
|
78
|
+
// To prevent editing properties like date created
|
79
|
+
const { dateCreated, creatorGivenName, creatorFamilyName, ...rest } =
|
80
|
+
model;
|
81
|
+
const tmpFormModel = { ...rest };
|
82
|
+
setFormModel(tmpFormModel);
|
83
|
+
}
|
84
|
+
}, [model]);
|
85
|
+
|
86
|
+
const onNameChanged = (evt: React.ChangeEvent<HTMLInputElement>): void => {
|
87
|
+
model ? (model.name = evt.target.value) : "";
|
88
|
+
setFormModel({ ...formModel, name: evt.target.value });
|
89
|
+
};
|
90
|
+
|
91
|
+
const onQuantityChanged = (
|
92
|
+
evt: React.ChangeEvent<HTMLInputElement>
|
93
|
+
): void => {
|
94
|
+
model ? (model.quantity = Number(evt.target.value)) : "";
|
95
|
+
setFormModel({ ...formModel, quantity: Number(evt.target.value) });
|
96
|
+
};
|
97
|
+
|
98
|
+
const onEvaluationFrequencyChanged = (
|
99
|
+
evt: React.ChangeEvent<HTMLInputElement>
|
100
|
+
): void => {
|
101
|
+
model ? (model.evaluationFrequency = Number(evt.target.value)) : "";
|
102
|
+
setFormModel({
|
103
|
+
...formModel,
|
104
|
+
evaluationFrequency: Number(evt.target.value),
|
105
|
+
});
|
106
|
+
};
|
107
|
+
|
108
|
+
const onActionFrequencyChanged = (
|
109
|
+
evt: React.ChangeEvent<HTMLInputElement>
|
110
|
+
): void => {
|
111
|
+
model ? (model.actionFrequency = Number(evt.target.value)) : "";
|
112
|
+
setFormModel({ ...formModel, actionFrequency: Number(evt.target.value) });
|
113
|
+
};
|
114
|
+
|
115
|
+
const onLocationChange = (evt: ChangeEvent<HTMLSelectElement>) => {
|
116
|
+
const selectedLocation = locations.find((x) => x.uuid === evt.target.value);
|
117
|
+
setFormModel({ ...formModel, locationUuid: selectedLocation.uuid });
|
118
|
+
};
|
119
|
+
|
120
|
+
const onQuantityUnitChange = (evt: ChangeEvent<HTMLSelectElement>) => {
|
121
|
+
const selectedQuantityUnit = dispensingUnits?.results.find(
|
122
|
+
(x) => x.uuid === evt.target.value
|
123
|
+
);
|
124
|
+
setFormModel({
|
125
|
+
...formModel,
|
126
|
+
stockItemPackagingUOMUuid: selectedQuantityUnit.uuid,
|
127
|
+
});
|
128
|
+
};
|
129
|
+
|
130
|
+
const onAlertRoleChange = (evt: ChangeEvent<HTMLSelectElement>) => {
|
131
|
+
const selectedAlertRole = rolesData?.results.find(
|
132
|
+
(x) => x.display === evt.target.value
|
133
|
+
);
|
134
|
+
setFormModel({ ...formModel, alertRole: selectedAlertRole.display });
|
135
|
+
};
|
136
|
+
|
137
|
+
const onMailRoleChange = (evt: ChangeEvent<HTMLSelectElement>) => {
|
138
|
+
const selectedMailRole = rolesData?.results.find(
|
139
|
+
(x) => x.display === evt.target.value
|
140
|
+
);
|
141
|
+
console.warn("Setting mail role to: ", selectedMailRole);
|
142
|
+
setFormModel({ ...formModel, mailRole: selectedMailRole.display });
|
143
|
+
};
|
144
|
+
|
145
|
+
const onEnabledChanged = (
|
146
|
+
cvt: React.ChangeEvent<HTMLInputElement>,
|
147
|
+
data: { checked: boolean; id: string }
|
148
|
+
): void => {
|
149
|
+
const isEnabled = !formModel?.enabled;
|
150
|
+
setFormModel({ ...formModel, enabled: isEnabled });
|
151
|
+
};
|
152
|
+
|
153
|
+
const onAppliesToChildrenChanged = (
|
154
|
+
cvt: React.ChangeEvent<HTMLInputElement>,
|
155
|
+
data: { checked: boolean; id: string }
|
156
|
+
): void => {
|
157
|
+
const enableDescendants = !formModel?.enableDescendants;
|
158
|
+
setFormModel({ ...formModel, enableDescendants: enableDescendants });
|
159
|
+
};
|
160
|
+
|
161
|
+
const onFormSubmit = useCallback(
|
162
|
+
(event) => {
|
163
|
+
event.preventDefault();
|
164
|
+
if (model) {
|
165
|
+
formModel.uuid = model.uuid;
|
166
|
+
}
|
167
|
+
if (stockItemUuid) {
|
168
|
+
formModel.stockItemUuid = stockItemUuid;
|
169
|
+
}
|
170
|
+
createOrUpdateStockRule(formModel)
|
171
|
+
.then(
|
172
|
+
() => {
|
173
|
+
showToast({
|
174
|
+
critical: true,
|
175
|
+
title: t("addedRule", "Add Rule"),
|
176
|
+
kind: "success",
|
177
|
+
description: t(
|
178
|
+
"stockruleaddedsuccessfully",
|
179
|
+
"Stock Rule Added Successfully"
|
180
|
+
),
|
181
|
+
});
|
182
|
+
closeOverlay();
|
183
|
+
},
|
184
|
+
(error) => {
|
185
|
+
showNotification({
|
186
|
+
title: t(`errorAddingRule', 'error adding a rule`),
|
187
|
+
kind: "error",
|
188
|
+
critical: true,
|
189
|
+
description: error?.message,
|
190
|
+
});
|
191
|
+
}
|
192
|
+
)
|
193
|
+
.catch();
|
194
|
+
},
|
195
|
+
[formModel, model, t]
|
196
|
+
);
|
197
|
+
|
198
|
+
return (
|
199
|
+
<div>
|
200
|
+
<Form onSubmit={onFormSubmit}>
|
201
|
+
<ModalHeader />
|
202
|
+
<ModalBody>
|
203
|
+
<FormGroup>
|
204
|
+
<section className={styles.section}>
|
205
|
+
<section className={styles.section}>
|
206
|
+
<Select
|
207
|
+
name="location"
|
208
|
+
className="select-field"
|
209
|
+
labelText={t("location", "Location")}
|
210
|
+
id="location"
|
211
|
+
value={formModel?.locationUuid ? formModel.locationUuid : ""}
|
212
|
+
onChange={onLocationChange}
|
213
|
+
>
|
214
|
+
<SelectItem
|
215
|
+
disabled
|
216
|
+
hidden
|
217
|
+
value=""
|
218
|
+
text={t("chooseLocation", "Choose the location")}
|
219
|
+
/>
|
220
|
+
{locations?.map((location) => {
|
221
|
+
return (
|
222
|
+
<SelectItem
|
223
|
+
key={location.uuid}
|
224
|
+
value={location.uuid}
|
225
|
+
text={location.display}
|
226
|
+
/>
|
227
|
+
);
|
228
|
+
})}
|
229
|
+
</Select>
|
230
|
+
</section>
|
231
|
+
|
232
|
+
<section className={styles.section}>
|
233
|
+
<TextInput
|
234
|
+
id="name"
|
235
|
+
type="text"
|
236
|
+
labelText={t("name", "Rule Name")}
|
237
|
+
size="md"
|
238
|
+
onChange={onNameChanged}
|
239
|
+
value={model?.name}
|
240
|
+
placeholder="e.g Panado Alert"
|
241
|
+
/>
|
242
|
+
</section>
|
243
|
+
|
244
|
+
<section className={styles.section}>
|
245
|
+
<Select
|
246
|
+
name="quantityUnit"
|
247
|
+
className="select-field"
|
248
|
+
labelText={t("quantityUnit", "Quantity Unit")}
|
249
|
+
id="quantityUnit"
|
250
|
+
value={
|
251
|
+
formModel?.stockItemPackagingUOMUuid
|
252
|
+
? formModel.stockItemPackagingUOMUuid
|
253
|
+
: ""
|
254
|
+
}
|
255
|
+
onChange={onQuantityUnitChange}
|
256
|
+
>
|
257
|
+
<SelectItem
|
258
|
+
disabled
|
259
|
+
hidden
|
260
|
+
value=""
|
261
|
+
text={t(
|
262
|
+
"chooseQuantityUnit",
|
263
|
+
"Choose the Unit of Quantity"
|
264
|
+
)}
|
265
|
+
/>
|
266
|
+
{dispensingUnits?.results.map((stockItemPackagingUOMUuid) => {
|
267
|
+
return (
|
268
|
+
<SelectItem
|
269
|
+
key={stockItemPackagingUOMUuid.uuid}
|
270
|
+
value={stockItemPackagingUOMUuid.uuid}
|
271
|
+
text={stockItemPackagingUOMUuid.packagingUomName}
|
272
|
+
/>
|
273
|
+
);
|
274
|
+
})}
|
275
|
+
</Select>
|
276
|
+
</section>
|
277
|
+
|
278
|
+
<section className={styles.section}>
|
279
|
+
<TextInput
|
280
|
+
id="quantity"
|
281
|
+
type="number"
|
282
|
+
labelText={t("quantity", "Quantity Threshold")}
|
283
|
+
size="md"
|
284
|
+
onChange={onQuantityChanged}
|
285
|
+
value={model?.quantity}
|
286
|
+
placeholder="e.g 30 Boxes"
|
287
|
+
/>
|
288
|
+
</section>
|
289
|
+
</section>
|
290
|
+
</FormGroup>
|
291
|
+
|
292
|
+
<FormGroup>
|
293
|
+
<section className={styles.section}>
|
294
|
+
<Select
|
295
|
+
name="alertRole"
|
296
|
+
className="select-field"
|
297
|
+
labelText={t("alertRole", "Alert Role")}
|
298
|
+
id="alertRole"
|
299
|
+
value={formModel?.alertRole ? formModel.alertRole : ""}
|
300
|
+
onChange={onAlertRoleChange}
|
301
|
+
>
|
302
|
+
<SelectItem
|
303
|
+
disabled
|
304
|
+
hidden
|
305
|
+
value=""
|
306
|
+
text={t("chooseAlertRole", "Choose an Alert Role")}
|
307
|
+
/>
|
308
|
+
{rolesData?.results?.map((alertRole) => {
|
309
|
+
return (
|
310
|
+
<SelectItem
|
311
|
+
key={alertRole.display}
|
312
|
+
value={alertRole.display}
|
313
|
+
text={alertRole.display}
|
314
|
+
/>
|
315
|
+
);
|
316
|
+
})}
|
317
|
+
</Select>
|
318
|
+
</section>
|
319
|
+
<section className={styles.section}>
|
320
|
+
<Select
|
321
|
+
name="mailRole"
|
322
|
+
className="select-field"
|
323
|
+
labelText={t("mailRole", "Mail Role")}
|
324
|
+
id="mailRole"
|
325
|
+
value={formModel?.mailRole ? formModel.mailRole : ""}
|
326
|
+
onChange={onMailRoleChange}
|
327
|
+
>
|
328
|
+
<SelectItem
|
329
|
+
disabled
|
330
|
+
hidden
|
331
|
+
value=""
|
332
|
+
text={t("chooseMailRole", "Choose a Mail Role")}
|
333
|
+
/>
|
334
|
+
{rolesData?.results?.map((mailRole) => {
|
335
|
+
return (
|
336
|
+
<SelectItem
|
337
|
+
key={mailRole.display}
|
338
|
+
value={mailRole.display}
|
339
|
+
text={mailRole.display}
|
340
|
+
/>
|
341
|
+
);
|
342
|
+
})}
|
343
|
+
</Select>
|
344
|
+
</section>
|
345
|
+
<section className={styles.section}>
|
346
|
+
<TextInput
|
347
|
+
id="evaluationFrequency"
|
348
|
+
type="number"
|
349
|
+
labelText={t(
|
350
|
+
"evaluationFrequency",
|
351
|
+
"Frequency Check (Minutes)"
|
352
|
+
)}
|
353
|
+
size="md"
|
354
|
+
onChange={onEvaluationFrequencyChanged}
|
355
|
+
value={model?.evaluationFrequency}
|
356
|
+
placeholder="e.g 30 Minutes"
|
357
|
+
/>
|
358
|
+
<TextInput
|
359
|
+
id="actionFrequency"
|
360
|
+
type="number"
|
361
|
+
labelText={t(
|
362
|
+
"actionFrequency",
|
363
|
+
"Notification Frequency (Minutes)"
|
364
|
+
)}
|
365
|
+
size="md"
|
366
|
+
onChange={onActionFrequencyChanged}
|
367
|
+
value={model?.actionFrequency}
|
368
|
+
placeholder="e.g 3600 Minutes"
|
369
|
+
/>
|
370
|
+
</section>
|
371
|
+
</FormGroup>
|
372
|
+
|
373
|
+
<div
|
374
|
+
style={{
|
375
|
+
display: "grid",
|
376
|
+
gridTemplateColumns: "1fr 1fr",
|
377
|
+
justifyContent: "center",
|
378
|
+
}}
|
379
|
+
>
|
380
|
+
<FormGroup className="clear-margin-bottom">
|
381
|
+
<CheckboxGroup className={styles.checkboxGrid}>
|
382
|
+
<Checkbox
|
383
|
+
onChange={onEnabledChanged}
|
384
|
+
checked={formModel?.enabled}
|
385
|
+
labelText={`Enabled ?`}
|
386
|
+
value={model?.enabled}
|
387
|
+
id="chk-ruleEnabled"
|
388
|
+
/>
|
389
|
+
</CheckboxGroup>
|
390
|
+
</FormGroup>
|
391
|
+
<FormGroup className="clear-margin-bottom">
|
392
|
+
<CheckboxGroup className={styles.checkboxGrid}>
|
393
|
+
<Checkbox
|
394
|
+
onChange={onAppliesToChildrenChanged}
|
395
|
+
name="appliesToChildren"
|
396
|
+
checked={formModel?.enableDescendants}
|
397
|
+
value={model?.enableDescendants}
|
398
|
+
labelText={`Applies to child locations?`}
|
399
|
+
id="chk-ruleAppliesToChildren"
|
400
|
+
/>
|
401
|
+
</CheckboxGroup>
|
402
|
+
</FormGroup>
|
403
|
+
</div>
|
404
|
+
|
405
|
+
<div>
|
406
|
+
This stock rule will be evaluated by checking if the stock
|
407
|
+
quantities have lowered to the threshold or below and a notification
|
408
|
+
will be sent to the personnel with the specified role in the given
|
409
|
+
location. The notification will only be sent once per specified
|
410
|
+
notification frequency.
|
411
|
+
</div>
|
412
|
+
</ModalBody>
|
413
|
+
<ModalFooter>
|
414
|
+
<Button kind="secondary" onClick={closeOverlay}>
|
415
|
+
{t("cancel", "Cancel")}
|
416
|
+
</Button>
|
417
|
+
<Button type="submit">{t("save", "Save")}</Button>
|
418
|
+
</ModalFooter>
|
419
|
+
</Form>
|
420
|
+
</div>
|
421
|
+
);
|
422
|
+
};
|
423
|
+
|
424
|
+
export default StockRulesAddOrUpdate;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
@use '@carbon/styles/scss/spacing';
|
2
|
+
@use '@carbon/styles/scss/type';
|
3
|
+
@import '~@openmrs/esm-styleguide/src/vars';
|
4
|
+
|
5
|
+
section {
|
6
|
+
margin: spacing.$spacing-03;
|
7
|
+
}
|
8
|
+
|
9
|
+
.sectionTitle {
|
10
|
+
@include type.type-style('heading-compact-02');
|
11
|
+
color: $text-02;
|
12
|
+
margin-bottom: spacing.$spacing-04;
|
13
|
+
}
|
14
|
+
|
15
|
+
.modalBody {
|
16
|
+
padding-bottom: spacing.$spacing-05;
|
17
|
+
}
|
18
|
+
|
@@ -0,0 +1,47 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import { useTranslation } from "react-i18next";
|
3
|
+
import { Button, ModalHeader, ModalBody, ModalFooter } from "@carbon/react";
|
4
|
+
import styles from "../../../root.scss";
|
5
|
+
|
6
|
+
interface DeleteConfirmationProps {
|
7
|
+
uuid?: string;
|
8
|
+
close: () => void;
|
9
|
+
onConfirmation: () => void;
|
10
|
+
}
|
11
|
+
|
12
|
+
const DeleteConfirmation: React.FC<DeleteConfirmationProps> = ({
|
13
|
+
close,
|
14
|
+
onConfirmation,
|
15
|
+
uuid,
|
16
|
+
}) => {
|
17
|
+
const { t } = useTranslation();
|
18
|
+
const handleCancel = () => close();
|
19
|
+
const handleDelete = () => onConfirmation?.();
|
20
|
+
|
21
|
+
return (
|
22
|
+
<>
|
23
|
+
<ModalHeader closeModal={close} className={styles.productiveHeading03}>
|
24
|
+
{t("deleteStockRule", "Delete Stock Rule")}?
|
25
|
+
</ModalHeader>
|
26
|
+
<ModalBody>
|
27
|
+
<p className={styles.bodyLong01}>
|
28
|
+
{t(
|
29
|
+
"deleteRuleConfirmationText",
|
30
|
+
`Are you sure you want to delete this stock rule? This action can't be undone.`,
|
31
|
+
{ encounter: uuid }
|
32
|
+
)}
|
33
|
+
</p>
|
34
|
+
</ModalBody>
|
35
|
+
<ModalFooter>
|
36
|
+
<Button size="lg" kind="secondary" onClick={handleCancel}>
|
37
|
+
{t("cancel", "Cancel")}
|
38
|
+
</Button>
|
39
|
+
<Button autoFocus kind="danger" onClick={handleDelete} size="lg">
|
40
|
+
{t("delete", "Delete")}
|
41
|
+
</Button>
|
42
|
+
</ModalFooter>
|
43
|
+
</>
|
44
|
+
);
|
45
|
+
};
|
46
|
+
|
47
|
+
export default DeleteConfirmation;
|
@@ -0,0 +1,37 @@
|
|
1
|
+
import React, { useCallback } from "react";
|
2
|
+
import { Button } from "@carbon/react";
|
3
|
+
import { Edit } from "@carbon/react/icons";
|
4
|
+
|
5
|
+
import { useTranslation } from "react-i18next";
|
6
|
+
import { launchOverlay } from "../../../core/components/overlay/hook";
|
7
|
+
import StockRulesAddOrUpdate from "./add-stock-rules.component";
|
8
|
+
import { StockRule } from "../../../core/api/types/stockItem/StockRule";
|
9
|
+
|
10
|
+
interface EditStockRulesActionMenuProps {
|
11
|
+
data?: StockRule;
|
12
|
+
stockItemUuid?: string;
|
13
|
+
}
|
14
|
+
|
15
|
+
const EditStockRuleActionsMenu: React.FC<EditStockRulesActionMenuProps> = ({
|
16
|
+
data,
|
17
|
+
stockItemUuid,
|
18
|
+
}) => {
|
19
|
+
const { t } = useTranslation();
|
20
|
+
const handleClick = useCallback(() => {
|
21
|
+
launchOverlay(
|
22
|
+
"Edit Stock Rule",
|
23
|
+
<StockRulesAddOrUpdate model={data} stockItemUuid={data.stockItemUuid} />
|
24
|
+
);
|
25
|
+
}, [data]);
|
26
|
+
|
27
|
+
return (
|
28
|
+
<Button
|
29
|
+
kind="ghost"
|
30
|
+
size="md"
|
31
|
+
onClick={() => handleClick()}
|
32
|
+
iconDescription={t("editStockRule", "Edit Stock Rule")}
|
33
|
+
renderIcon={(props) => <Edit size={16} {...props} />}
|
34
|
+
/>
|
35
|
+
);
|
36
|
+
};
|
37
|
+
export default EditStockRuleActionsMenu;
|
File without changes
|