Skip to content

Commit

Permalink
fix: set parent sku
Browse files Browse the repository at this point in the history
  • Loading branch information
kaioken committed Dec 24, 2024
1 parent 9d82607 commit a78608f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Domains/Connectors/ESim/Services/OrderService.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected function easyActivationOrder(OrderItem $item): array
return $this->client->post('/api/v2/easyactivations/create/order', [
'products' => [
[
'sku' => $item->product_sku,
'sku' => $item->variant->get('parent_sku'),
'service_days' => $totalDays,
'product_qty' => $item->quantity,
'start_date' => $startDate,
Expand Down

0 comments on commit a78608f

Please sign in to comment.