@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,255 @@
|
|
1
|
+
import React, { useEffect, useMemo } from "react";
|
2
|
+
import { useStockItemPackageUnitsHook } from "./packaging-units.resource";
|
3
|
+
import {
|
4
|
+
Button,
|
5
|
+
DataTable,
|
6
|
+
DataTableSkeleton,
|
7
|
+
Table,
|
8
|
+
TableBody,
|
9
|
+
TableCell,
|
10
|
+
TableContainer,
|
11
|
+
TableHead,
|
12
|
+
TableHeader,
|
13
|
+
TableRow,
|
14
|
+
} from "@carbon/react";
|
15
|
+
import PackagingUnitsConceptSelector from "../packaging-units-concept-selector/packaging-units-concept-selector.component";
|
16
|
+
import ControlledNumberInput from "../../../core/components/carbon/controlled-number-input/controlled-number-input.component";
|
17
|
+
import { Save, TrashCan } from "@carbon/react/icons";
|
18
|
+
import { FormProvider, useForm, useFormContext } from "react-hook-form";
|
19
|
+
import { zodResolver } from "@hookform/resolvers/zod";
|
20
|
+
import { PackageUnitFormData, packageUnitSchema } from "./validationSchema";
|
21
|
+
import { StockItemPackagingUOMDTO } from "../../../core/api/types/stockItem/StockItemPackagingUOM";
|
22
|
+
import {
|
23
|
+
createStockItemPackagingUnit,
|
24
|
+
deleteStockItemPackagingUnit,
|
25
|
+
} from "../../stock-items.resource";
|
26
|
+
import {
|
27
|
+
showNotification,
|
28
|
+
showSnackbar,
|
29
|
+
showToast,
|
30
|
+
} from "@openmrs/esm-framework";
|
31
|
+
import { useTranslation } from "react-i18next";
|
32
|
+
import styles from "./packaging-units.scss";
|
33
|
+
|
34
|
+
interface PackagingUnitsProps {
|
35
|
+
isEditing?: boolean;
|
36
|
+
onSubmit?: () => void;
|
37
|
+
stockItemUuid: string;
|
38
|
+
handleTabChange: (index) => void;
|
39
|
+
}
|
40
|
+
|
41
|
+
const PackagingUnits: React.FC<PackagingUnitsProps> = ({
|
42
|
+
isEditing,
|
43
|
+
stockItemUuid,
|
44
|
+
handleTabChange,
|
45
|
+
}) => {
|
46
|
+
const { items, isLoading, setStockItemUuid } = useStockItemPackageUnitsHook();
|
47
|
+
useEffect(() => {
|
48
|
+
setStockItemUuid(stockItemUuid);
|
49
|
+
}, [stockItemUuid, setStockItemUuid]);
|
50
|
+
|
51
|
+
const { t } = useTranslation();
|
52
|
+
const tableHeaders = useMemo(
|
53
|
+
() => [
|
54
|
+
{
|
55
|
+
key: "packaging",
|
56
|
+
header: t("packagingUnit", "Packaging Unit"),
|
57
|
+
styles: { width: "50%" },
|
58
|
+
},
|
59
|
+
{
|
60
|
+
key: "quantity",
|
61
|
+
header: t("quantity", "Quantity"),
|
62
|
+
styles: { width: "50%" },
|
63
|
+
},
|
64
|
+
{
|
65
|
+
key: "action",
|
66
|
+
header: t("action", "Actions"),
|
67
|
+
styles: { width: "50%" },
|
68
|
+
},
|
69
|
+
],
|
70
|
+
[]
|
71
|
+
);
|
72
|
+
|
73
|
+
const packageUnitForm = useForm<PackageUnitFormData>({
|
74
|
+
defaultValues: {},
|
75
|
+
mode: "all",
|
76
|
+
resolver: zodResolver(packageUnitSchema),
|
77
|
+
});
|
78
|
+
|
79
|
+
const handleSavePackageUnits = () => {
|
80
|
+
const { getValues } = packageUnitForm;
|
81
|
+
const { factor, packagingUomUuid } = getValues();
|
82
|
+
const payload: StockItemPackagingUOMDTO = {
|
83
|
+
factor: factor,
|
84
|
+
packagingUomUuid,
|
85
|
+
stockItemUuid,
|
86
|
+
};
|
87
|
+
createStockItemPackagingUnit(payload).then(
|
88
|
+
() =>
|
89
|
+
showSnackbar({
|
90
|
+
title: t("savePackingUnitTitle", "Package Unit"),
|
91
|
+
subtitle: t(
|
92
|
+
"savePackingUnitMessage",
|
93
|
+
"Package Unit saved successfully"
|
94
|
+
),
|
95
|
+
kind: "success",
|
96
|
+
}),
|
97
|
+
() => {
|
98
|
+
showSnackbar({
|
99
|
+
title: t("savePackagingUnitErrorTitle", "Package Unit"),
|
100
|
+
subtitle: t(
|
101
|
+
"savePackagingUnitErrorMessage",
|
102
|
+
"Error saving package unit"
|
103
|
+
),
|
104
|
+
kind: "error",
|
105
|
+
});
|
106
|
+
}
|
107
|
+
);
|
108
|
+
handleTabChange(0);
|
109
|
+
};
|
110
|
+
|
111
|
+
if (isLoading)
|
112
|
+
return (
|
113
|
+
<DataTableSkeleton
|
114
|
+
showHeader={false}
|
115
|
+
rowCount={5}
|
116
|
+
columnCount={5}
|
117
|
+
zebra
|
118
|
+
/>
|
119
|
+
);
|
120
|
+
|
121
|
+
return (
|
122
|
+
<FormProvider {...packageUnitForm}>
|
123
|
+
<DataTable
|
124
|
+
rows={[...items, {}]}
|
125
|
+
headers={tableHeaders}
|
126
|
+
isSortable={false}
|
127
|
+
useZebraStyles={true}
|
128
|
+
render={({ headers, getHeaderProps, getTableProps }) => (
|
129
|
+
<TableContainer className={styles.packagingTableContainer}>
|
130
|
+
<Table {...getTableProps()} className={styles.packingTable}>
|
131
|
+
<TableHead>
|
132
|
+
<TableRow>
|
133
|
+
{headers.map((header) => (
|
134
|
+
<TableHeader
|
135
|
+
{...getHeaderProps({
|
136
|
+
header,
|
137
|
+
isSortable: false,
|
138
|
+
})}
|
139
|
+
style={header.styles}
|
140
|
+
key={header.key}
|
141
|
+
>
|
142
|
+
{header.header?.content ?? header.header}
|
143
|
+
</TableHeader>
|
144
|
+
))}
|
145
|
+
<TableHeader style={{ width: "70%" }} />
|
146
|
+
</TableRow>
|
147
|
+
</TableHead>
|
148
|
+
<TableBody className={styles.packingTableBody}>
|
149
|
+
{items?.map((row: StockItemPackagingUOMDTO, index) => (
|
150
|
+
<PackagingUnitRow row={row} key={`${index}-${row?.uuid}`} />
|
151
|
+
))}
|
152
|
+
<PackagingUnitRow row={{}} key="bottom-row" isEditing />
|
153
|
+
</TableBody>
|
154
|
+
</Table>
|
155
|
+
</TableContainer>
|
156
|
+
)}
|
157
|
+
/>
|
158
|
+
|
159
|
+
<Button
|
160
|
+
name="save"
|
161
|
+
type="submit"
|
162
|
+
className="submitButton"
|
163
|
+
onClick={handleSavePackageUnits}
|
164
|
+
kind="primary"
|
165
|
+
renderIcon={Save}
|
166
|
+
>
|
167
|
+
{t("save", "Save")}
|
168
|
+
</Button>
|
169
|
+
</FormProvider>
|
170
|
+
);
|
171
|
+
};
|
172
|
+
|
173
|
+
export default PackagingUnits;
|
174
|
+
|
175
|
+
const PackagingUnitRow: React.FC<{
|
176
|
+
isEditing?: boolean;
|
177
|
+
row: StockItemPackagingUOMDTO;
|
178
|
+
key?: string;
|
179
|
+
}> = ({ isEditing, row, key }) => {
|
180
|
+
const { t } = useTranslation();
|
181
|
+
|
182
|
+
const {
|
183
|
+
control,
|
184
|
+
formState: { errors },
|
185
|
+
} = useFormContext();
|
186
|
+
|
187
|
+
const handleDelete = (e) => {
|
188
|
+
e.preventDefault();
|
189
|
+
deleteStockItemPackagingUnit(row.uuid).then(
|
190
|
+
() => {
|
191
|
+
showToast({
|
192
|
+
critical: true,
|
193
|
+
title: t("deletePackagingUnitTitle", `Delete packing item `),
|
194
|
+
kind: "success",
|
195
|
+
description: t(
|
196
|
+
"deletePackagingUnitMesaage",
|
197
|
+
`Stock Item packing unit deleted Successfully`
|
198
|
+
),
|
199
|
+
});
|
200
|
+
},
|
201
|
+
(error) => {
|
202
|
+
showNotification({
|
203
|
+
title: t(
|
204
|
+
"deletePackingUnitErrorTitle",
|
205
|
+
`Error Deleting a stock item packing unit`
|
206
|
+
),
|
207
|
+
kind: "error",
|
208
|
+
critical: true,
|
209
|
+
description: error?.message,
|
210
|
+
});
|
211
|
+
}
|
212
|
+
);
|
213
|
+
};
|
214
|
+
|
215
|
+
return (
|
216
|
+
<TableRow>
|
217
|
+
<TableCell>
|
218
|
+
{isEditing ? (
|
219
|
+
<PackagingUnitsConceptSelector
|
220
|
+
row={row}
|
221
|
+
controllerName={"packagingUomUuid"}
|
222
|
+
name="packagingUomUuid"
|
223
|
+
control={control}
|
224
|
+
invalid={!!errors.packagingUomUuid}
|
225
|
+
/>
|
226
|
+
) : (
|
227
|
+
(!isEditing || !row.uuid.startsWith("new-item")) &&
|
228
|
+
row?.packagingUomName
|
229
|
+
)}
|
230
|
+
</TableCell>
|
231
|
+
<TableCell>
|
232
|
+
<div className={styles.packingTableCell}>
|
233
|
+
<ControlledNumberInput
|
234
|
+
row={row}
|
235
|
+
controllerName="factor"
|
236
|
+
name="factor"
|
237
|
+
control={control}
|
238
|
+
id={`${row.uuid}-${key}`}
|
239
|
+
invalid={!!errors.factor}
|
240
|
+
/>
|
241
|
+
|
242
|
+
<Button
|
243
|
+
type="button"
|
244
|
+
size="sm"
|
245
|
+
className="submitButton clear-padding-margin"
|
246
|
+
iconDescription={"Delete"}
|
247
|
+
kind="ghost"
|
248
|
+
renderIcon={TrashCan}
|
249
|
+
onClick={(e) => handleDelete(e)}
|
250
|
+
/>
|
251
|
+
</div>
|
252
|
+
</TableCell>
|
253
|
+
</TableRow>
|
254
|
+
);
|
255
|
+
};
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import { ResourceRepresentation } from "../../../core/api/api";
|
2
|
+
import { useEffect, useState } from "react";
|
3
|
+
import {
|
4
|
+
StockItemInventoryFilter,
|
5
|
+
useStockItemPackagingUOMs,
|
6
|
+
} from "../../stock-items.resource";
|
7
|
+
|
8
|
+
export function useStockItemPackageUnitsHook(v?: ResourceRepresentation) {
|
9
|
+
const [stockItemFilter, setStockItemFilter] =
|
10
|
+
useState<StockItemInventoryFilter>({
|
11
|
+
startIndex: 0,
|
12
|
+
v: v || ResourceRepresentation.Default,
|
13
|
+
q: null,
|
14
|
+
totalCount: true,
|
15
|
+
});
|
16
|
+
|
17
|
+
const [stockItemUuid, setStockItemUuid] = useState<string | null>();
|
18
|
+
|
19
|
+
useEffect(() => {
|
20
|
+
setStockItemFilter({
|
21
|
+
startIndex: 0,
|
22
|
+
v: ResourceRepresentation.Default,
|
23
|
+
totalCount: true,
|
24
|
+
stockItemUuid: stockItemUuid,
|
25
|
+
});
|
26
|
+
}, [stockItemUuid]);
|
27
|
+
|
28
|
+
const { items, isLoading, isError } =
|
29
|
+
useStockItemPackagingUOMs(stockItemFilter);
|
30
|
+
|
31
|
+
return {
|
32
|
+
items: items.results,
|
33
|
+
totalCount: items.totalCount,
|
34
|
+
isLoading,
|
35
|
+
isError,
|
36
|
+
setStockItemUuid,
|
37
|
+
};
|
38
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
@use '@carbon/styles/scss/colors';
|
2
|
+
@use "@carbon/styles/scss/spacing";
|
3
|
+
@use "@carbon/styles/scss/type";
|
4
|
+
|
5
|
+
.packingTable {
|
6
|
+
min-height: 15rem;
|
7
|
+
display: block;
|
8
|
+
}
|
9
|
+
|
10
|
+
.packingTableCell {
|
11
|
+
display: flex;
|
12
|
+
align-items: center;
|
13
|
+
}
|
14
|
+
.packagingTableBody {
|
15
|
+
min-height: spacing.$spacing-13;
|
16
|
+
|
17
|
+
}
|
18
|
+
.packagingTableContainer {
|
19
|
+
min-height: 15rem;
|
20
|
+
display: block;
|
21
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { z } from "zod";
|
2
|
+
|
3
|
+
export const packageUnitSchema = z.object({
|
4
|
+
id: z.string().nullish(),
|
5
|
+
uuid: z.string().nullish(),
|
6
|
+
stockItemUuid: z.string().nullish(),
|
7
|
+
packagingUomName: z.string().nullish(),
|
8
|
+
packagingUomUuid: z.string().nullish(),
|
9
|
+
factor: z.coerce.number().nullish(),
|
10
|
+
isDefaultStockOperationsUoM: z.boolean().nullish(),
|
11
|
+
isDispensingUnit: z.boolean().nullish(),
|
12
|
+
});
|
13
|
+
|
14
|
+
export type PackageUnitFormData = z.infer<typeof packageUnitSchema>;
|
@@ -0,0 +1,95 @@
|
|
1
|
+
import React, { ReactNode } from "react";
|
2
|
+
import { Concept } from "../../../core/api/types/concept/Concept";
|
3
|
+
import { Control, Controller, FieldValues } from "react-hook-form";
|
4
|
+
import { useConceptById } from "../../../stock-lookups/stock-lookups.resource";
|
5
|
+
import { PACKAGING_UNITS_CODED_CONCEPT_ID } from "../../../constants";
|
6
|
+
import { ComboBox, TextInputSkeleton } from "@carbon/react";
|
7
|
+
import { StockItemPackagingUOMDTO } from "../../../core/api/types/stockItem/StockItemPackagingUOM";
|
8
|
+
|
9
|
+
interface PackagingUnitsConceptSelectorProps<T> {
|
10
|
+
row?: StockItemPackagingUOMDTO;
|
11
|
+
onPackageUnitChange?: (unit: Concept) => void;
|
12
|
+
title?: string;
|
13
|
+
placeholder?: string;
|
14
|
+
invalid?: boolean;
|
15
|
+
invalidText?: ReactNode;
|
16
|
+
|
17
|
+
// Control
|
18
|
+
controllerName: string;
|
19
|
+
name: string;
|
20
|
+
control: Control<FieldValues, T>;
|
21
|
+
}
|
22
|
+
|
23
|
+
const PackagingUnitsConceptSelector = <T,>(
|
24
|
+
props: PackagingUnitsConceptSelectorProps<T>
|
25
|
+
) => {
|
26
|
+
const {
|
27
|
+
items: { answers: dispensingUnits },
|
28
|
+
isLoading,
|
29
|
+
} = useConceptById(PACKAGING_UNITS_CODED_CONCEPT_ID);
|
30
|
+
|
31
|
+
if (isLoading) return <TextInputSkeleton />;
|
32
|
+
|
33
|
+
return (
|
34
|
+
<Controller
|
35
|
+
name={props.controllerName}
|
36
|
+
control={props.control}
|
37
|
+
render={({ field: { onChange, value, ref } }) => (
|
38
|
+
<ComboBox
|
39
|
+
titleText={props.title}
|
40
|
+
name={props.name}
|
41
|
+
control={props.control}
|
42
|
+
controllerName={props.controllerName}
|
43
|
+
id={`${props.name}-${props.row.id}-${props.row.uuid}`}
|
44
|
+
size="md"
|
45
|
+
items={
|
46
|
+
props.row?.packagingUomUuid !== undefined
|
47
|
+
? [
|
48
|
+
...(dispensingUnits.some(
|
49
|
+
(x) => x.uuid === props.row?.packagingUomUuid
|
50
|
+
)
|
51
|
+
? []
|
52
|
+
: [
|
53
|
+
{
|
54
|
+
uuid: props.row?.packagingUomUuid,
|
55
|
+
display: props.row?.packagingUomName,
|
56
|
+
},
|
57
|
+
]),
|
58
|
+
...(dispensingUnits ?? []),
|
59
|
+
]
|
60
|
+
: dispensingUnits || []
|
61
|
+
}
|
62
|
+
onChange={(data: { selectedItem: Concept }) => {
|
63
|
+
props.onPackageUnitChange?.(data?.selectedItem);
|
64
|
+
onChange(data?.selectedItem?.uuid || ""); // Provide a default value if needed
|
65
|
+
}}
|
66
|
+
initialSelectedItem={
|
67
|
+
props.row?.packagingUomUuid !== undefined
|
68
|
+
? {
|
69
|
+
uuid: props.row?.packagingUomUuid,
|
70
|
+
display: props.row?.packagingUomName,
|
71
|
+
}
|
72
|
+
: null
|
73
|
+
}
|
74
|
+
selectedItem={
|
75
|
+
props.row?.packagingUomUuid !== undefined
|
76
|
+
? {
|
77
|
+
uuid: props.row?.packagingUomUuid,
|
78
|
+
display: props.row?.packagingUomName,
|
79
|
+
}
|
80
|
+
: null
|
81
|
+
}
|
82
|
+
itemToString={(item?: Concept) =>
|
83
|
+
item && item?.display ? `${item?.display}` : ""
|
84
|
+
}
|
85
|
+
shouldFilterItem={() => true}
|
86
|
+
placeholder={props.placeholder}
|
87
|
+
invalid={props.invalid}
|
88
|
+
invalidText={props.invalidText}
|
89
|
+
/>
|
90
|
+
)}
|
91
|
+
/>
|
92
|
+
);
|
93
|
+
};
|
94
|
+
|
95
|
+
export default PackagingUnitsConceptSelector;
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import React, { ReactNode } from "react";
|
2
|
+
import { Concept } from "../../../core/api/types/concept/Concept";
|
3
|
+
import { Control, Controller, FieldValues } from "react-hook-form";
|
4
|
+
import { ComboBox, TextInputSkeleton } from "@carbon/react";
|
5
|
+
import { useStockSources } from "../../../stock-sources/stock-sources.resource";
|
6
|
+
import { ResourceRepresentation } from "../../../core/api/api";
|
7
|
+
import { StockSource } from "../../../core/api/types/stockOperation/StockSource";
|
8
|
+
|
9
|
+
interface PreferredVendorSelectorProps<T> {
|
10
|
+
preferredVendorUuid?: string;
|
11
|
+
onPreferredVendorChange?: (unit: StockSource) => void;
|
12
|
+
title?: string;
|
13
|
+
placeholder?: string;
|
14
|
+
invalid?: boolean;
|
15
|
+
invalidText?: ReactNode;
|
16
|
+
|
17
|
+
// Control
|
18
|
+
controllerName: string;
|
19
|
+
name: string;
|
20
|
+
control: Control<FieldValues, T>;
|
21
|
+
}
|
22
|
+
|
23
|
+
const PreferredVendorSelector = <T,>(
|
24
|
+
props: PreferredVendorSelectorProps<T>
|
25
|
+
) => {
|
26
|
+
const {
|
27
|
+
items: { results: sourcesList },
|
28
|
+
isLoading,
|
29
|
+
} = useStockSources({
|
30
|
+
v: ResourceRepresentation.Default,
|
31
|
+
});
|
32
|
+
|
33
|
+
if (isLoading) return <TextInputSkeleton />;
|
34
|
+
|
35
|
+
return (
|
36
|
+
<Controller
|
37
|
+
name={props.controllerName}
|
38
|
+
control={props.control}
|
39
|
+
render={({ field: { onChange, value, ref } }) => (
|
40
|
+
<ComboBox
|
41
|
+
titleText={props.title}
|
42
|
+
name={props.name}
|
43
|
+
control={props.control}
|
44
|
+
controllerName={props.controllerName}
|
45
|
+
id={props.name}
|
46
|
+
size={"md"}
|
47
|
+
items={sourcesList || []}
|
48
|
+
onChange={(data: { selectedItem: StockSource }) => {
|
49
|
+
props.onPreferredVendorChange?.(data.selectedItem);
|
50
|
+
onChange(data.selectedItem?.uuid);
|
51
|
+
}}
|
52
|
+
initialSelectedItem={
|
53
|
+
sourcesList?.find((p) => p.uuid === props.preferredVendorUuid) || {}
|
54
|
+
}
|
55
|
+
itemToString={(item?: Concept) =>
|
56
|
+
item && item?.name ? `${item?.name}` : ""
|
57
|
+
}
|
58
|
+
shouldFilterItem={() => true}
|
59
|
+
value={sourcesList?.find((p) => p.uuid === value)?.name ?? ""}
|
60
|
+
placeholder={props.placeholder}
|
61
|
+
ref={ref}
|
62
|
+
invalid={props.invalid}
|
63
|
+
invalidText={props.invalidText}
|
64
|
+
/>
|
65
|
+
)}
|
66
|
+
/>
|
67
|
+
);
|
68
|
+
};
|
69
|
+
|
70
|
+
export default PreferredVendorSelector;
|
File without changes
|
package/src/stock-items/add-stock-item/preferred-vendor-selector/preferred-vendor-selector.scss
ADDED
File without changes
|
@@ -0,0 +1,83 @@
|
|
1
|
+
import React, { useEffect, useMemo } from "react";
|
2
|
+
import { useTranslation } from "react-i18next";
|
3
|
+
import { ResourceRepresentation } from "../../../core/api/api";
|
4
|
+
import { formatDisplayDate } from "../../../core/utils/datetimeUtils";
|
5
|
+
import { DataTableSkeleton, Tile } from "@carbon/react";
|
6
|
+
import DataList from "../../../core/components/table/table.component";
|
7
|
+
import styles from "../../stock-items-table.scss";
|
8
|
+
import { useStockItemQuantitiesHook } from "./quantities.resource";
|
9
|
+
|
10
|
+
interface StockQuantitiesProps {
|
11
|
+
onSubmit?: () => void;
|
12
|
+
stockItemUuid: string;
|
13
|
+
}
|
14
|
+
|
15
|
+
const StockQuantities: React.FC<StockQuantitiesProps> = ({ stockItemUuid }) => {
|
16
|
+
const { isLoading, items, totalCount, setCurrentPage, setStockItemUuid } =
|
17
|
+
useStockItemQuantitiesHook(ResourceRepresentation.Default);
|
18
|
+
const { t } = useTranslation();
|
19
|
+
|
20
|
+
useEffect(() => {
|
21
|
+
setStockItemUuid(stockItemUuid);
|
22
|
+
}, [stockItemUuid, setStockItemUuid]);
|
23
|
+
|
24
|
+
const tableHeaders = useMemo(
|
25
|
+
() => [
|
26
|
+
{
|
27
|
+
key: "location",
|
28
|
+
header: t("location", "Location"),
|
29
|
+
},
|
30
|
+
{
|
31
|
+
key: "quantity",
|
32
|
+
header: t("quantity", "Quantity"),
|
33
|
+
},
|
34
|
+
{
|
35
|
+
key: "packaging",
|
36
|
+
header: t("packagingUnit", "Packaging Unit"),
|
37
|
+
},
|
38
|
+
],
|
39
|
+
[]
|
40
|
+
);
|
41
|
+
|
42
|
+
const tableRows = useMemo(() => {
|
43
|
+
return items?.map((row, index) => ({
|
44
|
+
...row,
|
45
|
+
id: `${row.partyUuid}${row.stockBatchUuid}${index}`,
|
46
|
+
key: `${row.partyUuid}${row.stockBatchUuid}${index}`,
|
47
|
+
uuid: `${row.partyUuid}${row.stockBatchUuid}${index}`,
|
48
|
+
expires: formatDisplayDate(row?.expiration),
|
49
|
+
location: row?.partyName,
|
50
|
+
quantity: row?.quantity?.toLocaleString() ?? "",
|
51
|
+
batch: row.batchNumber ?? "",
|
52
|
+
packaging: row.quantityUoM ?? "",
|
53
|
+
}));
|
54
|
+
}, [items]);
|
55
|
+
|
56
|
+
if (isLoading) {
|
57
|
+
return <DataTableSkeleton role="progressbar" />;
|
58
|
+
}
|
59
|
+
|
60
|
+
if (items?.length > 0) {
|
61
|
+
return (
|
62
|
+
<DataList
|
63
|
+
columns={tableHeaders}
|
64
|
+
data={tableRows}
|
65
|
+
totalItems={totalCount}
|
66
|
+
goToPage={setCurrentPage}
|
67
|
+
hasToolbar={false}
|
68
|
+
/>
|
69
|
+
);
|
70
|
+
}
|
71
|
+
|
72
|
+
return (
|
73
|
+
<div className={styles.tileContainer}>
|
74
|
+
<Tile className={styles.tile}>
|
75
|
+
<p className={styles.content}>
|
76
|
+
{t("quantityToDisplay", "No quantity to display")}
|
77
|
+
</p>
|
78
|
+
</Tile>
|
79
|
+
</div>
|
80
|
+
);
|
81
|
+
};
|
82
|
+
|
83
|
+
export default StockQuantities;
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import { ResourceRepresentation } from "../../../core/api/api";
|
2
|
+
import { useEffect, useState } from "react";
|
3
|
+
import {
|
4
|
+
StockItemInventoryFilter,
|
5
|
+
useStockItemInventory,
|
6
|
+
} from "../../stock-items.resource";
|
7
|
+
|
8
|
+
export function useStockItemQuantitiesHook(v?: ResourceRepresentation) {
|
9
|
+
const [stockItemFilter, setStockItemFilter] =
|
10
|
+
useState<StockItemInventoryFilter>({
|
11
|
+
startIndex: 0,
|
12
|
+
v: v || ResourceRepresentation.Default,
|
13
|
+
limit: 10,
|
14
|
+
q: null,
|
15
|
+
totalCount: true,
|
16
|
+
});
|
17
|
+
|
18
|
+
const pageSizes = [10, 20, 30, 40, 50];
|
19
|
+
const [currentPageSize, setPageSize] = useState(10);
|
20
|
+
const [searchString, setSearchString] = useState(null);
|
21
|
+
|
22
|
+
const [currentPage, setCurrentPage] = useState(1);
|
23
|
+
|
24
|
+
const [stockItemUuid, setStockItemUuid] = useState<string | null>();
|
25
|
+
const [partyUuid, setPartyUuid] = useState<string | null>();
|
26
|
+
const [locationUuid, setLocationUuid] = useState<string | null>();
|
27
|
+
const [stockBatchUuid, setStockBatchUuid] = useState<string | null>();
|
28
|
+
|
29
|
+
useEffect(() => {
|
30
|
+
setStockItemFilter({
|
31
|
+
startIndex: currentPage - 1,
|
32
|
+
v: ResourceRepresentation.Default,
|
33
|
+
limit: currentPageSize,
|
34
|
+
q: searchString,
|
35
|
+
totalCount: true,
|
36
|
+
stockItemUuid: stockItemUuid,
|
37
|
+
partyUuid: partyUuid,
|
38
|
+
locationUuid: locationUuid,
|
39
|
+
stockBatchUuid: stockBatchUuid,
|
40
|
+
});
|
41
|
+
}, [
|
42
|
+
searchString,
|
43
|
+
currentPage,
|
44
|
+
currentPageSize,
|
45
|
+
stockItemUuid,
|
46
|
+
partyUuid,
|
47
|
+
locationUuid,
|
48
|
+
stockBatchUuid,
|
49
|
+
]);
|
50
|
+
|
51
|
+
const { items, isLoading, isError } = useStockItemInventory(stockItemFilter);
|
52
|
+
|
53
|
+
return {
|
54
|
+
items: items.results ?? [],
|
55
|
+
totalCount: items.totalCount,
|
56
|
+
currentPage,
|
57
|
+
currentPageSize,
|
58
|
+
setCurrentPage,
|
59
|
+
setPageSize,
|
60
|
+
pageSizes,
|
61
|
+
isLoading,
|
62
|
+
isError,
|
63
|
+
setSearchString,
|
64
|
+
setStockItemUuid,
|
65
|
+
setLocationUuid,
|
66
|
+
setPartyUuid,
|
67
|
+
setStockBatchUuid,
|
68
|
+
};
|
69
|
+
}
|
File without changes
|