Skip to content

Commit

Permalink
Fixed: logic to print shipping label in case of orderLookup (hotwax#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Dec 11, 2024
1 parent ebe53c6 commit 803b336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/OrderLookupLabelActionsPopover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export default defineComponent({
shipmentPackages.map((shipmentPackage: any) => {
if(!shipmentIds.includes(shipmentPackage.shipmentId)) {
shipmentIds.push(shipmentPackage.shipmentId)
shippingLabelPdfUrls.push(shipmentPackage.labelImageUrl)
}
shippingLabelPdfUrls.push(shipmentPackage.labelImageUrl)
})
await OrderService.printShippingLabel(shipmentIds, shippingLabelPdfUrls)
Expand Down

0 comments on commit 803b336

Please sign in to comment.