Skip to content

Commit

Permalink
Merge pull request #827 from hotwax/#801_multiple_shipment_package
Browse files Browse the repository at this point in the history
Improved: Increased viewSize while fetching shipment item detail (#801).
  • Loading branch information
ravilodhi authored Oct 16, 2024
2 parents a296417 + 7a44cd5 commit 283ff1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/UtilService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const findShipmentItemInformation = async(shipmentIds: Array<string>): Promise<a
"shipmentId_op": "in"
},
"fieldList": ["shipmentItemSeqId", "orderItemSeqId", "orderId", "shipmentId", "productId"],
"viewSize": shipmentIds.length * 5, // TODO: check what should be the viewSize here
"viewSize": 250, // TODO: Need to fetch all data paginated
"distinct": "Y"
}

Expand Down

0 comments on commit 283ff1b

Please sign in to comment.