Skip to content

Commit

Permalink
Improved: Inventory will update after shipment & return(#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Sourabh committed Dec 6, 2024
1 parent 92548d8 commit 40f5403
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/views/ReturnDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,9 @@ export default defineComponent({
this.queryString = ''
}
},
ionViewDidLeave() {
this.productQoh = {};
},
setup() {
const store = useStore();
const router = useRouter();
Expand Down
3 changes: 3 additions & 0 deletions src/views/ShipmentDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,9 @@ export default defineComponent({
this.queryString = ''
}
},
ionViewDidLeave() {
this.productQoh = {};
},
setup() {
const store = useStore();
const router = useRouter();
Expand Down

0 comments on commit 40f5403

Please sign in to comment.