Skip to content

Commit

Permalink
Merge pull request #258 from hotwax/257_remove_bulk_inventory_adjustment
Browse files Browse the repository at this point in the history
Removed: bulk inventory adjustment option from Inventory Detail page (#257).
  • Loading branch information
ravilodhi authored Jan 11, 2024
2 parents b18ad11 + 1113a02 commit ca1b4e0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 125 deletions.
112 changes: 0 additions & 112 deletions src/components/BulkInventoryAdjustmentModal.vue

This file was deleted.

13 changes: 0 additions & 13 deletions src/views/InventoryReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@
</ion-card-content>
</ion-card>
<div class="filters">
<ion-item @click="openBulkInventoryAdjustmentModal()" button>
<ion-icon slot="start" :icon="calculatorOutline" />
<ion-label>{{ $t("Bulk adjustment") }}</ion-label>
<ion-note slot="end">{{ getSelectedItems() }} {{ $t("items selected") }}</ion-note>
<ion-icon slot="end" :icon="chevronForwardOutline" />
</ion-item>

<ion-item @click="openMissingFacilitiesModal()" button>
<ion-icon slot="start" :icon="businessOutline" />
<ion-label>{{ $t("Missing facilities") }}</ion-label>
Expand Down Expand Up @@ -320,12 +313,6 @@ export default defineComponent({
getParentInformation(id: any, items: any) {
return items.find((item: any) => item.parentProductId == id)
},
async openBulkInventoryAdjustmentModal() {
const bulkInventoryAdjustmentModal = await modalController.create({
component: BulkInventoryAdjustmentModal,
});
return bulkInventoryAdjustmentModal.present();
},
},
setup() {
const router = useRouter();
Expand Down

0 comments on commit ca1b4e0

Please sign in to comment.