Skip to content

Commit

Permalink
Merge pull request #876 from amansinghbais/#764-detail
Browse files Browse the repository at this point in the history
Improved: sending updated order detail post shipping label generation in the packOrder (#764)
  • Loading branch information
ravilodhi authored Dec 11, 2024
2 parents 853882d + ab261be commit 23300b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/OrderDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ export default defineComponent({
modal.onDidDismiss().then((result: any) => {
if(result.data?.packOrder) {
this.packOrder(order);
this.packOrder(this.order);
}
})
Expand All @@ -1646,8 +1646,8 @@ export default defineComponent({
modal.onDidDismiss().then((result: any) => {
if(result.data?.moveToNext) {
if(this.isForceScanEnabled) this.scanOrder(order);
else this.packOrder(order);
if(this.isForceScanEnabled) this.scanOrder(this.order);
else this.packOrder(this.order);
}
})
Expand Down

0 comments on commit 23300b9

Please sign in to comment.