Skip to content

Commit 08f07d3

Browse files
author
Gerald Baulig
committed
fix(counting): count quantity of items per parcel
1 parent 0ad6c4e commit 08f07d3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/services/fulfillment_product.ts

+1
Original file line numberDiff line numberDiff line change
@@ -905,6 +905,7 @@ export class FulfillmentProductService
905905
this.logger.debug('Offer List:', offer_lists);
906906

907907
const goods = query.items.map((good): IItem => ({
908+
sku: `${good.product_id}\t${good.variant_id}`,
908909
desc: `${good.product_id}\t${good.variant_id}`,
909910
quantity: good.quantity,
910911
weight: good.package?.weight_in_kg ?? this.throwStatusCode(

0 commit comments

Comments
 (0)