Skip to content

Commit

Permalink
Merge pull request #662 from amansinghbais/#633
Browse files Browse the repository at this point in the history
Fixed: items already counted with 0 qty not visible counted (#633)
  • Loading branch information
ravilodhi authored Jan 24, 2025
2 parents 45dd9a4 + b89b814 commit c5814b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/HardCountDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</ion-button>
</ion-item>

<ion-list v-if="currentProduct.quantity || currentProduct.scannedCount">
<ion-list v-if="currentProduct.quantity || currentProduct.scannedCount || currentProduct.quantity === 0 || currentProduct.scannedCount === 0">
<ion-item v-if="!['INV_COUNT_REJECTED', 'INV_COUNT_COMPLETED'].includes(currentProduct.itemStatusId)">
<ion-input :label="translate('Count')" :disabled="productStoreSettings['forceScan']" :placeholder="translate('submit physical count')" name="value" v-model="inputCount" id="value" type="number" min="0" required @keydown="inputCountValidation"/>
</ion-item>
Expand Down

0 comments on commit c5814b1

Please sign in to comment.