Skip to content

Commit

Permalink
Improved: sending updated order detail post shipping label generation…
Browse files Browse the repository at this point in the history
… in the packOrder (#764)
  • Loading branch information
amansinghbais authored and ravilodhi committed Dec 11, 2024
1 parent 72bbbb9 commit dbbab02
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 @@ -1652,7 +1652,7 @@ export default defineComponent({
modal.onDidDismiss().then((result: any) => {
if(result.data?.packOrder) {
this.packOrder(order);
this.packOrder(this.order);
}
})
Expand All @@ -1666,8 +1666,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 dbbab02

Please sign in to comment.