@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,524 @@
|
|
1
|
+
import React, { useMemo } from "react";
|
2
|
+
import { useStockOperationPages } from "./stock-operations-table.resource";
|
3
|
+
import { ResourceRepresentation } from "../core/api/api";
|
4
|
+
import {
|
5
|
+
DataTable,
|
6
|
+
TabPanel,
|
7
|
+
DataTableSkeleton,
|
8
|
+
Pagination,
|
9
|
+
Table,
|
10
|
+
TableBody,
|
11
|
+
TableCell,
|
12
|
+
TableContainer,
|
13
|
+
TableExpandedRow,
|
14
|
+
TableExpandHeader,
|
15
|
+
TableExpandRow,
|
16
|
+
TableHead,
|
17
|
+
TableHeader,
|
18
|
+
TableRow,
|
19
|
+
TableToolbar,
|
20
|
+
TableToolbarContent,
|
21
|
+
TableToolbarSearch,
|
22
|
+
Tile,
|
23
|
+
StructuredListHead,
|
24
|
+
StructuredListRow,
|
25
|
+
StructuredListCell,
|
26
|
+
StructuredListBody,
|
27
|
+
OverflowMenu,
|
28
|
+
OverflowMenuItem,
|
29
|
+
} from "@carbon/react";
|
30
|
+
import { ArrowRight } from "@carbon/react/icons";
|
31
|
+
import { formatDisplayDate } from "../core/utils/datetimeUtils";
|
32
|
+
import styles from "../stock-items/stock-items-table.scss";
|
33
|
+
import {
|
34
|
+
StockOperationStatusCancelled,
|
35
|
+
StockOperationStatusNew,
|
36
|
+
StockOperationStatusRejected,
|
37
|
+
StockOperationStatusReturned,
|
38
|
+
} from "../core/api/types/stockOperation/StockOperationStatus";
|
39
|
+
import { isDesktop, showModal } from "@openmrs/esm-framework";
|
40
|
+
import StockOperationTypesSelector from "./stock-operation-types-selector/stock-operation-types-selector.component";
|
41
|
+
import { launchAddOrEditDialog } from "./stock-operation.utils";
|
42
|
+
import { initialStockOperationValue } from "../core/utils/utils";
|
43
|
+
import { StockOperationType } from "../core/api/types/stockOperation/StockOperationType";
|
44
|
+
import { useTranslation } from "react-i18next";
|
45
|
+
import EditStockOperationActionMenu from "./edit-stock-operation/edit-stock-operation-action-menu.component";
|
46
|
+
import { handleMutate } from "./swr-revalidation";
|
47
|
+
|
48
|
+
interface StockOperationsTableProps {
|
49
|
+
status?: string;
|
50
|
+
}
|
51
|
+
|
52
|
+
const StockOperations: React.FC<StockOperationsTableProps> = () => {
|
53
|
+
const { t } = useTranslation();
|
54
|
+
const operation: StockOperationType = useMemo(
|
55
|
+
() => ({
|
56
|
+
uuid: "",
|
57
|
+
name: "",
|
58
|
+
description: "",
|
59
|
+
operationType: "",
|
60
|
+
hasSource: false,
|
61
|
+
sourceType: "Location",
|
62
|
+
hasDestination: false,
|
63
|
+
destinationType: "Location",
|
64
|
+
hasRecipient: false,
|
65
|
+
recipientRequired: false,
|
66
|
+
availableWhenReserved: false,
|
67
|
+
allowExpiredBatchNumbers: false,
|
68
|
+
stockOperationTypeLocationScopes: [],
|
69
|
+
creator: undefined,
|
70
|
+
dateCreated: undefined,
|
71
|
+
changedBy: undefined,
|
72
|
+
dateChanged: undefined,
|
73
|
+
dateVoided: undefined,
|
74
|
+
voidedBy: undefined,
|
75
|
+
voidReason: "",
|
76
|
+
voided: false,
|
77
|
+
}),
|
78
|
+
[]
|
79
|
+
);
|
80
|
+
|
81
|
+
const {
|
82
|
+
items,
|
83
|
+
tableHeaders,
|
84
|
+
currentPage,
|
85
|
+
pageSizes,
|
86
|
+
totalItems,
|
87
|
+
goTo,
|
88
|
+
currentPageSize,
|
89
|
+
setPageSize,
|
90
|
+
isLoading,
|
91
|
+
} = useStockOperationPages({
|
92
|
+
v: ResourceRepresentation.Full,
|
93
|
+
totalCount: true,
|
94
|
+
});
|
95
|
+
|
96
|
+
let operations: StockOperationType[] | null | undefined;
|
97
|
+
const handleOnComplete = () => {
|
98
|
+
const dispose = showModal("stock-operation-dialog", {
|
99
|
+
title: "complete",
|
100
|
+
operation: operation,
|
101
|
+
requireReason: "",
|
102
|
+
closeModal: () => dispose(),
|
103
|
+
});
|
104
|
+
handleMutate("ws/rest/v1/stockmanagement/stockoperation");
|
105
|
+
};
|
106
|
+
const tableRows = useMemo(() => {
|
107
|
+
return items?.map((stockOperation, index) => ({
|
108
|
+
...stockOperation,
|
109
|
+
id: stockOperation?.uuid,
|
110
|
+
key: `key-${stockOperation?.uuid}`,
|
111
|
+
operationTypeName: `${stockOperation?.operationTypeName}`,
|
112
|
+
operationNumber: (
|
113
|
+
<EditStockOperationActionMenu
|
114
|
+
model={items[index]}
|
115
|
+
operations={operations}
|
116
|
+
/>
|
117
|
+
),
|
118
|
+
status: `${stockOperation?.status}`,
|
119
|
+
source: `${stockOperation?.sourceName ?? ""}`,
|
120
|
+
destination: `${stockOperation?.destinationName ?? ""}`,
|
121
|
+
location: (
|
122
|
+
<>
|
123
|
+
{" "}
|
124
|
+
{stockOperation?.sourceName ?? ""}{" "}
|
125
|
+
{stockOperation?.sourceName && stockOperation?.destinationName ? (
|
126
|
+
<ArrowRight size={16} />
|
127
|
+
) : (
|
128
|
+
""
|
129
|
+
)}{" "}
|
130
|
+
{stockOperation?.destinationName ?? ""}{" "}
|
131
|
+
</>
|
132
|
+
),
|
133
|
+
responsiblePerson: `${
|
134
|
+
stockOperation?.responsiblePersonFamilyName ??
|
135
|
+
stockOperation?.responsiblePersonOther ??
|
136
|
+
""
|
137
|
+
} ${stockOperation?.responsiblePersonGivenName ?? ""}`,
|
138
|
+
operationDate: formatDisplayDate(stockOperation?.operationDate),
|
139
|
+
details: (
|
140
|
+
<div className="tbl-expand-display-fields">
|
141
|
+
<div className="field-label">
|
142
|
+
<span className="field-title">Created</span>
|
143
|
+
<span className="field-desc">
|
144
|
+
<span className="action-date">
|
145
|
+
{formatDisplayDate(stockOperation?.dateCreated)}
|
146
|
+
</span>{" "}
|
147
|
+
By
|
148
|
+
<span className="action-by">
|
149
|
+
{stockOperation.creatorFamilyName ?? ""}{" "}
|
150
|
+
{stockOperation.creatorGivenName ?? ""}
|
151
|
+
</span>
|
152
|
+
</span>
|
153
|
+
</div>
|
154
|
+
{stockOperation?.status !== StockOperationStatusNew &&
|
155
|
+
stockOperation?.status !== StockOperationStatusReturned &&
|
156
|
+
stockOperation?.submittedDate && (
|
157
|
+
<div className="field-label">
|
158
|
+
<span className="field-title">Submitted</span>
|
159
|
+
<span className="field-desc">
|
160
|
+
<span className="action-date">
|
161
|
+
{formatDisplayDate(stockOperation?.submittedDate)}
|
162
|
+
</span>{" "}
|
163
|
+
By
|
164
|
+
<span className="action-by">
|
165
|
+
{stockOperation.submittedByFamilyName ?? ""}{" "}
|
166
|
+
{stockOperation.submittedByGivenName ?? ""}
|
167
|
+
</span>
|
168
|
+
</span>
|
169
|
+
</div>
|
170
|
+
)}
|
171
|
+
|
172
|
+
{stockOperation?.completedDate && (
|
173
|
+
<div className="field-label">
|
174
|
+
<span className="field-title">Completed</span>
|
175
|
+
<span className="field-desc">
|
176
|
+
<span className="action-date">
|
177
|
+
{formatDisplayDate(stockOperation?.completedDate)}
|
178
|
+
</span>{" "}
|
179
|
+
By
|
180
|
+
<span className="action-by">
|
181
|
+
{stockOperation.completedByFamilyName ?? ""}{" "}
|
182
|
+
{stockOperation.completedByGivenName ?? ""}
|
183
|
+
</span>
|
184
|
+
</span>
|
185
|
+
</div>
|
186
|
+
)}
|
187
|
+
|
188
|
+
{stockOperation?.status === StockOperationStatusCancelled && (
|
189
|
+
<div className="field-label">
|
190
|
+
<span className="field-title">Cancelled</span>
|
191
|
+
<span className="field-desc">
|
192
|
+
<span className="action-date">
|
193
|
+
{formatDisplayDate(stockOperation?.cancelledDate)}
|
194
|
+
</span>{" "}
|
195
|
+
By
|
196
|
+
<span className="action-by">
|
197
|
+
{stockOperation.cancelledByFamilyName ?? ""}{" "}
|
198
|
+
{stockOperation.cancelledByGivenName ?? ""}
|
199
|
+
</span>
|
200
|
+
<p>{stockOperation.cancelReason}</p>
|
201
|
+
</span>
|
202
|
+
</div>
|
203
|
+
)}
|
204
|
+
|
205
|
+
{stockOperation?.status === StockOperationStatusRejected && (
|
206
|
+
<div className="field-label">
|
207
|
+
<span className="field-title">Rejected</span>
|
208
|
+
<span className="field-desc">
|
209
|
+
<span className="action-date">
|
210
|
+
{formatDisplayDate(stockOperation?.rejectedDate)}
|
211
|
+
</span>{" "}
|
212
|
+
By
|
213
|
+
<span className="action-by">
|
214
|
+
{stockOperation.rejectedByFamilyName ?? ""}{" "}
|
215
|
+
{stockOperation.rejectedByGivenName ?? ""}
|
216
|
+
</span>
|
217
|
+
<p>{stockOperation.rejectionReason}</p>
|
218
|
+
</span>
|
219
|
+
</div>
|
220
|
+
)}
|
221
|
+
|
222
|
+
{stockOperation?.status === StockOperationStatusReturned && (
|
223
|
+
<div className="field-label">
|
224
|
+
<span className="field-title">Returned</span>
|
225
|
+
<span className="field-desc">
|
226
|
+
<span className="action-date">
|
227
|
+
{formatDisplayDate(stockOperation?.returnedDate)}
|
228
|
+
</span>{" "}
|
229
|
+
By
|
230
|
+
<span className="action-by">
|
231
|
+
{stockOperation.returnedByFamilyName ?? ""}{" "}
|
232
|
+
{stockOperation.returnedByGivenName ?? ""}
|
233
|
+
</span>
|
234
|
+
<p>{stockOperation.returnReason}</p>
|
235
|
+
</span>
|
236
|
+
</div>
|
237
|
+
)}
|
238
|
+
</div>
|
239
|
+
),
|
240
|
+
actions: (
|
241
|
+
<OverflowMenu flipped={"true"} aria-label="overflow-menu">
|
242
|
+
<OverflowMenuItem itemText="Complete" onClick={handleOnComplete} />
|
243
|
+
<OverflowMenuItem
|
244
|
+
itemText="Edit"
|
245
|
+
onClick={() => {
|
246
|
+
launchAddOrEditDialog(
|
247
|
+
items[index],
|
248
|
+
true,
|
249
|
+
operation,
|
250
|
+
operations,
|
251
|
+
false
|
252
|
+
);
|
253
|
+
}}
|
254
|
+
/>
|
255
|
+
</OverflowMenu>
|
256
|
+
),
|
257
|
+
}));
|
258
|
+
}, [handleOnComplete, items, operation, operations]);
|
259
|
+
|
260
|
+
if (isLoading) {
|
261
|
+
return (
|
262
|
+
<DataTableSkeleton
|
263
|
+
className={styles.dataTableSkeleton}
|
264
|
+
showHeader={false}
|
265
|
+
rowCount={5}
|
266
|
+
columnCount={5}
|
267
|
+
zebra
|
268
|
+
/>
|
269
|
+
);
|
270
|
+
}
|
271
|
+
|
272
|
+
return (
|
273
|
+
<div className={styles.tableOverride}>
|
274
|
+
<TabPanel>{t("Stock operations to track movement of stock.")}</TabPanel>
|
275
|
+
<div id="table-tool-bar">
|
276
|
+
<div></div>
|
277
|
+
<div className="right-filters"></div>
|
278
|
+
</div>
|
279
|
+
<DataTable
|
280
|
+
rows={tableRows}
|
281
|
+
headers={tableHeaders}
|
282
|
+
isSortable={true}
|
283
|
+
useZebraStyles={true}
|
284
|
+
render={({
|
285
|
+
rows,
|
286
|
+
headers,
|
287
|
+
getHeaderProps,
|
288
|
+
getTableProps,
|
289
|
+
getRowProps,
|
290
|
+
onInputChange,
|
291
|
+
}) => (
|
292
|
+
<TableContainer>
|
293
|
+
<TableToolbar
|
294
|
+
style={{
|
295
|
+
position: "static",
|
296
|
+
overflow: "visible",
|
297
|
+
backgroundColor: "color",
|
298
|
+
}}
|
299
|
+
>
|
300
|
+
<TableToolbarContent className={styles.toolbarContent}>
|
301
|
+
<TableToolbarSearch
|
302
|
+
className={styles.patientListSearch}
|
303
|
+
expanded
|
304
|
+
onChange={onInputChange}
|
305
|
+
placeholder="Filter Table"
|
306
|
+
size="sm"
|
307
|
+
/>
|
308
|
+
<StockOperationTypesSelector
|
309
|
+
onOperationTypeSelected={(operation) => {
|
310
|
+
launchAddOrEditDialog(
|
311
|
+
initialStockOperationValue(),
|
312
|
+
false,
|
313
|
+
operation,
|
314
|
+
operations,
|
315
|
+
false
|
316
|
+
);
|
317
|
+
}}
|
318
|
+
onOperationLoaded={(ops) => {
|
319
|
+
operations = ops;
|
320
|
+
}}
|
321
|
+
/>
|
322
|
+
</TableToolbarContent>
|
323
|
+
</TableToolbar>
|
324
|
+
<Table {...getTableProps()}>
|
325
|
+
<TableHead>
|
326
|
+
<TableRow>
|
327
|
+
<TableExpandHeader />
|
328
|
+
{headers.map(
|
329
|
+
(header: any) =>
|
330
|
+
header.key !== "details" && (
|
331
|
+
<TableHeader
|
332
|
+
{...getHeaderProps({
|
333
|
+
header,
|
334
|
+
isSortable: header.isSortable,
|
335
|
+
})}
|
336
|
+
className={
|
337
|
+
isDesktop
|
338
|
+
? styles.desktopHeader
|
339
|
+
: styles.tabletHeader
|
340
|
+
}
|
341
|
+
key={`${header.key}`}
|
342
|
+
>
|
343
|
+
{header.header?.content ?? header.header}
|
344
|
+
</TableHeader>
|
345
|
+
)
|
346
|
+
)}
|
347
|
+
<TableHeader></TableHeader>
|
348
|
+
</TableRow>
|
349
|
+
</TableHead>
|
350
|
+
<TableBody>
|
351
|
+
{rows.map((row: any, index) => {
|
352
|
+
return (
|
353
|
+
<React.Fragment key={row.id}>
|
354
|
+
<TableExpandRow
|
355
|
+
className={
|
356
|
+
isDesktop ? styles.desktopRow : styles.tabletRow
|
357
|
+
}
|
358
|
+
{...getRowProps({ row })}
|
359
|
+
>
|
360
|
+
{row.cells.map(
|
361
|
+
(cell: any) =>
|
362
|
+
cell?.info?.header !== "details" && (
|
363
|
+
<TableCell key={cell.id}>{cell.value}</TableCell>
|
364
|
+
)
|
365
|
+
)}
|
366
|
+
</TableExpandRow>
|
367
|
+
<TableExpandedRow colSpan={headers.length + 2}>
|
368
|
+
<>
|
369
|
+
<StructuredListHead>
|
370
|
+
<StructuredListRow head>
|
371
|
+
<StructuredListCell head>
|
372
|
+
{t("dateCreated", "Date Created")}
|
373
|
+
</StructuredListCell>
|
374
|
+
<StructuredListCell head>
|
375
|
+
{t("dateCompleted", "Date Completed")}
|
376
|
+
</StructuredListCell>
|
377
|
+
<StructuredListCell head>
|
378
|
+
{t("batchNumber", "Batch Number")}
|
379
|
+
</StructuredListCell>
|
380
|
+
<StructuredListCell head>Qty</StructuredListCell>
|
381
|
+
</StructuredListRow>
|
382
|
+
</StructuredListHead>
|
383
|
+
<StructuredListBody>
|
384
|
+
<StructuredListRow>
|
385
|
+
<StructuredListCell noWrap>
|
386
|
+
{items[index]?.dateCreated
|
387
|
+
? formatDisplayDate(items[index]?.dateCreated)
|
388
|
+
: ""}
|
389
|
+
|
390
|
+
{items[index]?.dateCreated ? "By" : ""}
|
391
|
+
|
392
|
+
{items[index]?.dateCreated
|
393
|
+
? items[index]?.creatorFamilyName
|
394
|
+
: ""}
|
395
|
+
</StructuredListCell>
|
396
|
+
<StructuredListCell>
|
397
|
+
{items[index]?.completedDate
|
398
|
+
? formatDisplayDate(
|
399
|
+
items[index]?.completedDate
|
400
|
+
)
|
401
|
+
: ""}
|
402
|
+
|
403
|
+
{items[index]?.completedDate ? "By" : ""}
|
404
|
+
|
405
|
+
{items[index]?.completedDate
|
406
|
+
? items[index]?.creatorFamilyName
|
407
|
+
: ""}
|
408
|
+
</StructuredListCell>
|
409
|
+
<StructuredListCell>
|
410
|
+
{items[index]?.stockOperationItems
|
411
|
+
? items[index].stockOperationItems?.map(
|
412
|
+
(item) => item.batchNo
|
413
|
+
)[0]
|
414
|
+
: ""}
|
415
|
+
</StructuredListCell>
|
416
|
+
<StructuredListCell>
|
417
|
+
{items[index]?.stockOperationItems
|
418
|
+
? items[index].stockOperationItems?.map(
|
419
|
+
(item) => item.quantity
|
420
|
+
)[0]
|
421
|
+
: ""}
|
422
|
+
</StructuredListCell>
|
423
|
+
</StructuredListRow>
|
424
|
+
<StructuredListRow>
|
425
|
+
<StructuredListCell noWrap>
|
426
|
+
{items[index]?.stockOperationItems.map(
|
427
|
+
(item) => item.quantity
|
428
|
+
)[1]
|
429
|
+
? formatDisplayDate(items[index]?.dateCreated)
|
430
|
+
: ""}
|
431
|
+
|
432
|
+
{items[index]?.stockOperationItems.map(
|
433
|
+
(item) => item.quantity
|
434
|
+
)[1]
|
435
|
+
? "By"
|
436
|
+
: ""}
|
437
|
+
|
438
|
+
{items[index]?.stockOperationItems.map(
|
439
|
+
(item) => item.quantity
|
440
|
+
)[1]
|
441
|
+
? items[index]?.creatorFamilyName
|
442
|
+
: ""}
|
443
|
+
</StructuredListCell>
|
444
|
+
<StructuredListCell>
|
445
|
+
{items[index]?.stockOperationItems.map(
|
446
|
+
(item) => item.quantity
|
447
|
+
)[1]
|
448
|
+
? formatDisplayDate(
|
449
|
+
items[index]?.completedDate
|
450
|
+
)
|
451
|
+
: ""}
|
452
|
+
|
453
|
+
{items[index]?.stockOperationItems.map(
|
454
|
+
(item) => item.quantity
|
455
|
+
)[1] && items[index]?.completedDate
|
456
|
+
? "By"
|
457
|
+
: ""}
|
458
|
+
|
459
|
+
{items[index]?.stockOperationItems.map(
|
460
|
+
(item) => item.quantity
|
461
|
+
)[1] && items[index]?.completedDate
|
462
|
+
? items[index]?.creatorFamilyName
|
463
|
+
: ""}
|
464
|
+
</StructuredListCell>
|
465
|
+
<StructuredListCell>
|
466
|
+
{items[index]?.stockOperationItems
|
467
|
+
? items[index].stockOperationItems?.map(
|
468
|
+
(item) => item.batchNo
|
469
|
+
)[1]
|
470
|
+
: ""}
|
471
|
+
</StructuredListCell>
|
472
|
+
<StructuredListCell>
|
473
|
+
{items[index]?.stockOperationItems
|
474
|
+
? items[index].stockOperationItems?.map(
|
475
|
+
(item) => item.quantity
|
476
|
+
)[1]
|
477
|
+
: ""}
|
478
|
+
</StructuredListCell>
|
479
|
+
</StructuredListRow>
|
480
|
+
</StructuredListBody>
|
481
|
+
</>
|
482
|
+
</TableExpandedRow>
|
483
|
+
</React.Fragment>
|
484
|
+
);
|
485
|
+
})}
|
486
|
+
</TableBody>
|
487
|
+
</Table>
|
488
|
+
{rows.length === 0 ? (
|
489
|
+
<div className={styles.tileContainer}>
|
490
|
+
<Tile className={styles.tile}>
|
491
|
+
<div className={styles.tileContent}>
|
492
|
+
<p className={styles.content}>
|
493
|
+
{t("noOperationsToDisplay", "No Stock Items to display")}
|
494
|
+
</p>
|
495
|
+
<p className={styles.helper}>
|
496
|
+
{t("checkFilters", "Check the filters above")}
|
497
|
+
</p>
|
498
|
+
</div>
|
499
|
+
</Tile>
|
500
|
+
</div>
|
501
|
+
) : null}
|
502
|
+
</TableContainer>
|
503
|
+
)}
|
504
|
+
></DataTable>
|
505
|
+
<Pagination
|
506
|
+
page={currentPage}
|
507
|
+
pageSize={currentPageSize}
|
508
|
+
pageSizes={pageSizes}
|
509
|
+
totalItems={totalItems}
|
510
|
+
onChange={({ pageSize, page }) => {
|
511
|
+
if (pageSize !== currentPageSize) {
|
512
|
+
setPageSize(pageSize);
|
513
|
+
}
|
514
|
+
if (page !== currentPage) {
|
515
|
+
goTo(page);
|
516
|
+
}
|
517
|
+
}}
|
518
|
+
className={styles.paginationOverride}
|
519
|
+
/>
|
520
|
+
</div>
|
521
|
+
);
|
522
|
+
};
|
523
|
+
|
524
|
+
export default StockOperations;
|
@@ -0,0 +1,77 @@
|
|
1
|
+
import {
|
2
|
+
StockOperationFilter,
|
3
|
+
useStockOperations,
|
4
|
+
} from "./stock-operations.resource";
|
5
|
+
import { useMemo, useState } from "react";
|
6
|
+
import { usePagination } from "@openmrs/esm-framework";
|
7
|
+
import { useTranslation } from "react-i18next";
|
8
|
+
|
9
|
+
export function useStockOperationPages(filter: StockOperationFilter) {
|
10
|
+
const { items, isLoading, isError } = useStockOperations(filter);
|
11
|
+
|
12
|
+
const pageSizes = [10, 20, 30, 40, 50];
|
13
|
+
const [currentPageSize, setPageSize] = useState(10);
|
14
|
+
|
15
|
+
const {
|
16
|
+
goTo,
|
17
|
+
results: paginatedItems,
|
18
|
+
currentPage,
|
19
|
+
} = usePagination(items.results, currentPageSize);
|
20
|
+
|
21
|
+
const { t } = useTranslation();
|
22
|
+
|
23
|
+
const tableHeaders = useMemo(
|
24
|
+
() => [
|
25
|
+
{
|
26
|
+
id: 0,
|
27
|
+
header: t("type", "Type"),
|
28
|
+
key: "operationTypeName",
|
29
|
+
},
|
30
|
+
{
|
31
|
+
id: 1,
|
32
|
+
header: t("number", "Number"),
|
33
|
+
key: "operationNumber",
|
34
|
+
},
|
35
|
+
{
|
36
|
+
id: 2,
|
37
|
+
header: t("status", "Status"),
|
38
|
+
key: "status",
|
39
|
+
},
|
40
|
+
{
|
41
|
+
id: 3,
|
42
|
+
header: t("location", "Location"),
|
43
|
+
key: "location",
|
44
|
+
},
|
45
|
+
{
|
46
|
+
id: 4,
|
47
|
+
header: t("responsiblePerson", "Responsible Person"),
|
48
|
+
key: "responsiblePerson",
|
49
|
+
},
|
50
|
+
{
|
51
|
+
id: 5,
|
52
|
+
header: t("date", "Date"),
|
53
|
+
key: "operationDate",
|
54
|
+
},
|
55
|
+
{
|
56
|
+
id: 6,
|
57
|
+
key: "details",
|
58
|
+
},
|
59
|
+
{ key: "actions", header: "" },
|
60
|
+
],
|
61
|
+
[t]
|
62
|
+
);
|
63
|
+
|
64
|
+
return {
|
65
|
+
items: paginatedItems,
|
66
|
+
totalItems: items?.totalCount,
|
67
|
+
currentPage,
|
68
|
+
currentPageSize,
|
69
|
+
paginatedItems,
|
70
|
+
goTo,
|
71
|
+
pageSizes,
|
72
|
+
isLoading,
|
73
|
+
isError,
|
74
|
+
setPageSize,
|
75
|
+
tableHeaders,
|
76
|
+
};
|
77
|
+
}
|
File without changes
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import StockOperations from "./stock-operations-table.component";
|
3
|
+
|
4
|
+
function StockOperationsComponent() {
|
5
|
+
return (
|
6
|
+
<div style={{ margin: "5px" }}>
|
7
|
+
<StockOperations />
|
8
|
+
</div>
|
9
|
+
);
|
10
|
+
}
|
11
|
+
|
12
|
+
export default StockOperationsComponent;
|